Update ECAM to new colors (wheel SVG only, .nas is updated) and improve WHEEL ECAM

This commit is contained in:
Jonathan Redpath 2017-11-06 17:45:50 -04:00
parent ffb3749290
commit 1371b02ea5
4 changed files with 350 additions and 222 deletions

View file

@ -31,6 +31,10 @@ var accum = 0;
setprop("/systems/electrical/extra/apu-load", 0); setprop("/systems/electrical/extra/apu-load", 0);
setprop("/systems/electrical/extra/apu-volts", 0); setprop("/systems/electrical/extra/apu-volts", 0);
setprop("/systems/electrical/extra/apu-hz", 0); setprop("/systems/electrical/extra/apu-hz", 0);
setprop("/systems/electrical/bat1direction", 0);
setprop("/systems/electrical/bat2direction", 0);
setprop("/ECAM/Lower/bat1-contactrotation", 0);
setprop("/ECAM/Lower/bat2-contactrotation", 0);
setprop("/systems/pneumatic/bleedapu", 0); setprop("/systems/pneumatic/bleedapu", 0);
setprop("/engines/engine[0]/oil-psi-actual", 0); setprop("/engines/engine[0]/oil-psi-actual", 0);
setprop("/engines/engine[1]/oil-psi-actual", 0); setprop("/engines/engine[1]/oil-psi-actual", 0);
@ -174,13 +178,13 @@ var canvas_lowerECAM_apu = {
# APU Gen # APU Gen
if (getprop("/systems/electrical/extra/apu-volts") > 110) { if (getprop("/systems/electrical/extra/apu-volts") > 110) {
me["APUGenVolt"].setColor(0.0667,0.7294,0.3137); me["APUGenVolt"].setColor(0.0667,0.9450,0.3686);
} else { } else {
me["APUGenVolt"].setColor(0.7333,0.3803,0); me["APUGenVolt"].setColor(0.7333,0.3803,0);
} }
if (getprop("/systems/electrical/extra/apu-hz") > 380) { if (getprop("/systems/electrical/extra/apu-hz") > 380) {
me["APUGenHz"].setColor(0.0667,0.7294,0.3137); me["APUGenHz"].setColor(0.0667,0.9450,0.3686);
} else { } else {
me["APUGenHz"].setColor(0.7333,0.3803,0); me["APUGenHz"].setColor(0.7333,0.3803,0);
} }
@ -221,7 +225,7 @@ var canvas_lowerECAM_apu = {
# APU Bleed # APU Bleed
if (getprop("/controls/adirs/ir[1]/knob") != 1 and (getprop("/controls/APU/master") == 1 or getprop("/systems/pneumatic/bleedapu") > 0)) { if (getprop("/controls/adirs/ir[1]/knob") != 1 and (getprop("/controls/APU/master") == 1 or getprop("/systems/pneumatic/bleedapu") > 0)) {
me["APUBleedPSI"].setColor(0.0667,0.7294,0.3137); me["APUBleedPSI"].setColor(0.0667,0.9450,0.3686);
me["APUBleedPSI"].setText(sprintf("%s", math.round(getprop("/systems/pneumatic/bleedapu")))); me["APUBleedPSI"].setText(sprintf("%s", math.round(getprop("/systems/pneumatic/bleedapu"))));
} else { } else {
me["APUBleedPSI"].setColor(0.7333,0.3803,0); me["APUBleedPSI"].setColor(0.7333,0.3803,0);
@ -238,14 +242,14 @@ var canvas_lowerECAM_apu = {
# APU N and EGT # APU N and EGT
if (getprop("/controls/APU/master") == 1) { if (getprop("/controls/APU/master") == 1) {
me["APUN"].setColor(0.0667,0.7294,0.3137); me["APUN"].setColor(0.0667,0.9450,0.3686);
me["APUN"].setText(sprintf("%s", math.round(getprop("/systems/apu/rpm")))); me["APUN"].setText(sprintf("%s", math.round(getprop("/systems/apu/rpm"))));
me["APUEGT"].setColor(0.0667,0.7294,0.3137); me["APUEGT"].setColor(0.0667,0.9450,0.3686);
me["APUEGT"].setText(sprintf("%s", math.round(getprop("/systems/apu/egt")))); me["APUEGT"].setText(sprintf("%s", math.round(getprop("/systems/apu/egt"))));
} else if (getprop("/systems/apu/rpm") >= 1) { } else if (getprop("/systems/apu/rpm") >= 1) {
me["APUN"].setColor(0.0667,0.7294,0.3137); me["APUN"].setColor(0.0667,0.9450,0.3686);
me["APUN"].setText(sprintf("%s", math.round(getprop("/systems/apu/rpm")))); me["APUN"].setText(sprintf("%s", math.round(getprop("/systems/apu/rpm"))));
me["APUEGT"].setColor(0.0667,0.7294,0.3137); me["APUEGT"].setColor(0.0667,0.9450,0.3686);
me["APUEGT"].setText(sprintf("%s", math.round(getprop("/systems/apu/egt")))); me["APUEGT"].setText(sprintf("%s", math.round(getprop("/systems/apu/egt"))));
} else { } else {
me["APUN"].setColor(0.7333,0.3803,0); me["APUN"].setColor(0.7333,0.3803,0);
@ -282,16 +286,16 @@ var canvas_lowerECAM_eng = {
# Oil Pressure # Oil Pressure
if (getprop("/engines/engine[0]/oil-psi-actual") >= 20) { if (getprop("/engines/engine[0]/oil-psi-actual") >= 20) {
me["OilPSI1"].setColor(0.0667,0.7294,0.3137); me["OilPSI1"].setColor(0.0667,0.9450,0.3686);
me["OilPSI1-needle"].setColorFill(0.0667,0.7294,0.3137); me["OilPSI1-needle"].setColorFill(0.0667,0.9450,0.3686);
} else { } else {
me["OilPSI1"].setColor(1,0,0); me["OilPSI1"].setColor(1,0,0);
me["OilPSI1-needle"].setColorFill(1,0,0); me["OilPSI1-needle"].setColorFill(1,0,0);
} }
if (getprop("/engines/engine[1]/oil-psi-actual") >= 20) { if (getprop("/engines/engine[1]/oil-psi-actual") >= 20) {
me["OilPSI2"].setColor(0.0667,0.7294,0.3137); me["OilPSI2"].setColor(0.0667,0.9450,0.3686);
me["OilPSI2-needle"].setColorFill(0.0667,0.7294,0.3137); me["OilPSI2-needle"].setColorFill(0.0667,0.9450,0.3686);
} else { } else {
me["OilPSI2"].setColor(1,0,0); me["OilPSI2"].setColor(1,0,0);
me["OilPSI2-needle"].setColorFill(1,0,0); me["OilPSI2-needle"].setColorFill(1,0,0);
@ -340,9 +344,9 @@ var canvas_lowerECAM_fctl = {
me["PTupdn"].setColor(0.7333,0.3803,0); me["PTupdn"].setColor(0.7333,0.3803,0);
me["PTcc"].setColor(0.7333,0.3803,0); me["PTcc"].setColor(0.7333,0.3803,0);
} else { } else {
me["PT"].setColor(0.0667,0.7294,0.3137); me["PT"].setColor(0.0667,0.9450,0.3686);
me["PTupdn"].setColor(0.0667,0.7294,0.3137); me["PTupdn"].setColor(0.0667,0.9450,0.3686);
me["PTcc"].setColor(0.0667,0.7294,0.3137); me["PTcc"].setColor(0.0667,0.9450,0.3686);
} }
# Ailerons # Ailerons
@ -353,8 +357,8 @@ var canvas_lowerECAM_fctl = {
me["ailL"].setColor(0.7333,0.3803,0); me["ailL"].setColor(0.7333,0.3803,0);
me["ailR"].setColor(0.7333,0.3803,0); me["ailR"].setColor(0.7333,0.3803,0);
} else { } else {
me["ailL"].setColor(0.0667,0.7294,0.3137); me["ailL"].setColor(0.0667,0.9450,0.3686);
me["ailR"].setColor(0.0667,0.7294,0.3137); me["ailR"].setColor(0.0667,0.9450,0.3686);
} }
# Elevators # Elevators
@ -364,13 +368,13 @@ var canvas_lowerECAM_fctl = {
if (blue_psi < 1500 and green_psi < 1500) { if (blue_psi < 1500 and green_psi < 1500) {
me["elevL"].setColor(0.7333,0.3803,0); me["elevL"].setColor(0.7333,0.3803,0);
} else { } else {
me["elevL"].setColor(0.0667,0.7294,0.3137); me["elevL"].setColor(0.0667,0.9450,0.3686);
} }
if (blue_psi < 1500 and yellow_psi < 1500) { if (blue_psi < 1500 and yellow_psi < 1500) {
me["elevR"].setColor(0.7333,0.3803,0); me["elevR"].setColor(0.7333,0.3803,0);
} else { } else {
me["elevR"].setColor(0.0667,0.7294,0.3137); me["elevR"].setColor(0.0667,0.9450,0.3686);
} }
# Rudder # Rudder
@ -379,7 +383,7 @@ var canvas_lowerECAM_fctl = {
if (blue_psi < 1500 and yellow_psi < 1500 and green_psi < 1500) { if (blue_psi < 1500 and yellow_psi < 1500 and green_psi < 1500) {
me["rudder"].setColor(0.7333,0.3803,0); me["rudder"].setColor(0.7333,0.3803,0);
} else { } else {
me["rudder"].setColor(0.0667,0.7294,0.3137); me["rudder"].setColor(0.0667,0.9450,0.3686);
} }
# Spoilers # Spoilers
@ -473,8 +477,8 @@ var canvas_lowerECAM_fctl = {
me["spoiler1Lf"].hide(); me["spoiler1Lf"].hide();
} }
} else { } else {
me["spoiler1Lex"].setColor(0.0667,0.7294,0.3137); me["spoiler1Lex"].setColor(0.0667,0.9450,0.3686);
me["spoiler1Lrt"].setColor(0.0667,0.7294,0.3137); me["spoiler1Lrt"].setColor(0.0667,0.9450,0.3686);
me["spoiler1Lf"].hide(); me["spoiler1Lf"].hide();
} }
@ -487,8 +491,8 @@ var canvas_lowerECAM_fctl = {
me["spoiler2Lf"].hide(); me["spoiler2Lf"].hide();
} }
} else { } else {
me["spoiler2Lex"].setColor(0.0667,0.7294,0.3137); me["spoiler2Lex"].setColor(0.0667,0.9450,0.3686);
me["spoiler2Lrt"].setColor(0.0667,0.7294,0.3137); me["spoiler2Lrt"].setColor(0.0667,0.9450,0.3686);
me["spoiler2Lf"].hide(); me["spoiler2Lf"].hide();
} }
@ -501,8 +505,8 @@ var canvas_lowerECAM_fctl = {
me["spoiler3Lf"].hide(); me["spoiler3Lf"].hide();
} }
} else { } else {
me["spoiler3Lex"].setColor(0.0667,0.7294,0.3137); me["spoiler3Lex"].setColor(0.0667,0.9450,0.3686);
me["spoiler3Lrt"].setColor(0.0667,0.7294,0.3137); me["spoiler3Lrt"].setColor(0.0667,0.9450,0.3686);
me["spoiler3Lf"].hide(); me["spoiler3Lf"].hide();
} }
@ -515,8 +519,8 @@ var canvas_lowerECAM_fctl = {
me["spoiler4Lf"].hide(); me["spoiler4Lf"].hide();
} }
} else { } else {
me["spoiler4Lex"].setColor(0.0667,0.7294,0.3137); me["spoiler4Lex"].setColor(0.0667,0.9450,0.3686);
me["spoiler4Lrt"].setColor(0.0667,0.7294,0.3137); me["spoiler4Lrt"].setColor(0.0667,0.9450,0.3686);
me["spoiler4Lf"].hide(); me["spoiler4Lf"].hide();
} }
@ -529,8 +533,8 @@ var canvas_lowerECAM_fctl = {
me["spoiler5Lf"].hide(); me["spoiler5Lf"].hide();
} }
} else { } else {
me["spoiler5Lex"].setColor(0.0667,0.7294,0.3137); me["spoiler5Lex"].setColor(0.0667,0.9450,0.3686);
me["spoiler5Lrt"].setColor(0.0667,0.7294,0.3137); me["spoiler5Lrt"].setColor(0.0667,0.9450,0.3686);
me["spoiler5Lf"].hide(); me["spoiler5Lf"].hide();
} }
@ -543,8 +547,8 @@ var canvas_lowerECAM_fctl = {
me["spoiler1Rf"].hide(); me["spoiler1Rf"].hide();
} }
} else { } else {
me["spoiler1Rex"].setColor(0.0667,0.7294,0.3137); me["spoiler1Rex"].setColor(0.0667,0.9450,0.3686);
me["spoiler1Rrt"].setColor(0.0667,0.7294,0.3137); me["spoiler1Rrt"].setColor(0.0667,0.9450,0.3686);
me["spoiler1Rf"].hide(); me["spoiler1Rf"].hide();
} }
@ -557,8 +561,8 @@ var canvas_lowerECAM_fctl = {
me["spoiler2Rf"].hide(); me["spoiler2Rf"].hide();
} }
} else { } else {
me["spoiler2Rex"].setColor(0.0667,0.7294,0.3137); me["spoiler2Rex"].setColor(0.0667,0.9450,0.3686);
me["spoiler2Rrt"].setColor(0.0667,0.7294,0.3137); me["spoiler2Rrt"].setColor(0.0667,0.9450,0.3686);
me["spoiler2Rf"].hide(); me["spoiler2Rf"].hide();
} }
@ -571,8 +575,8 @@ var canvas_lowerECAM_fctl = {
me["spoiler3Rf"].hide(); me["spoiler3Rf"].hide();
} }
} else { } else {
me["spoiler3Rex"].setColor(0.0667,0.7294,0.3137); me["spoiler3Rex"].setColor(0.0667,0.9450,0.3686);
me["spoiler3Rrt"].setColor(0.0667,0.7294,0.3137); me["spoiler3Rrt"].setColor(0.0667,0.9450,0.3686);
me["spoiler3Rf"].hide(); me["spoiler3Rf"].hide();
} }
@ -585,8 +589,8 @@ var canvas_lowerECAM_fctl = {
me["spoiler4Rf"].hide(); me["spoiler4Rf"].hide();
} }
} else { } else {
me["spoiler4Rex"].setColor(0.0667,0.7294,0.3137); me["spoiler4Rex"].setColor(0.0667,0.9450,0.3686);
me["spoiler4Rrt"].setColor(0.0667,0.7294,0.3137); me["spoiler4Rrt"].setColor(0.0667,0.9450,0.3686);
me["spoiler4Rf"].hide(); me["spoiler4Rf"].hide();
} }
@ -599,47 +603,47 @@ var canvas_lowerECAM_fctl = {
me["spoiler5Rf"].hide(); me["spoiler5Rf"].hide();
} }
} else { } else {
me["spoiler5Rex"].setColor(0.0667,0.7294,0.3137); me["spoiler5Rex"].setColor(0.0667,0.9450,0.3686);
me["spoiler5Rrt"].setColor(0.0667,0.7294,0.3137); me["spoiler5Rrt"].setColor(0.0667,0.9450,0.3686);
me["spoiler5Rf"].hide(); me["spoiler5Rf"].hide();
} }
# Flight Computers # Flight Computers
if (getprop("/systems/fctl/elac1")) { if (getprop("/systems/fctl/elac1")) {
me["elac1"].setColor(0.0667,0.7294,0.3137); me["elac1"].setColor(0.0667,0.9450,0.3686);
me["path4249"].setColor(0.0667,0.7294,0.3137); me["path4249"].setColor(0.0667,0.9450,0.3686);
} else if ((getprop("/systems/fctl/elac1") == 0) or (getprop("/systems/failures/elac1") == 1)) { } else if ((getprop("/systems/fctl/elac1") == 0) or (getprop("/systems/failures/elac1") == 1)) {
me["elac1"].setColor(0.7333,0.3803,0); me["elac1"].setColor(0.7333,0.3803,0);
me["path4249"].setColor(0.7333,0.3803,0); me["path4249"].setColor(0.7333,0.3803,0);
} }
if (getprop("/systems/fctl/elac2")) { if (getprop("/systems/fctl/elac2")) {
me["elac2"].setColor(0.0667,0.7294,0.3137); me["elac2"].setColor(0.0667,0.9450,0.3686);
me["path4249-3"].setColor(0.0667,0.7294,0.3137); me["path4249-3"].setColor(0.0667,0.9450,0.3686);
} else if ((getprop("/systems/fctl/elac2") == 0) or (getprop("/systems/failures/elac2") == 1)) { } else if ((getprop("/systems/fctl/elac2") == 0) or (getprop("/systems/failures/elac2") == 1)) {
me["elac2"].setColor(0.7333,0.3803,0); me["elac2"].setColor(0.7333,0.3803,0);
me["path4249-3"].setColor(0.7333,0.3803,0); me["path4249-3"].setColor(0.7333,0.3803,0);
} }
if (getprop("/systems/fctl/sec1")) { if (getprop("/systems/fctl/sec1")) {
me["sec1"].setColor(0.0667,0.7294,0.3137); me["sec1"].setColor(0.0667,0.9450,0.3686);
me["path4249-3-6-7"].setColor(0.0667,0.7294,0.3137); me["path4249-3-6-7"].setColor(0.0667,0.9450,0.3686);
} else if ((getprop("/systems/fctl/sec1") == 0) or (getprop("/systems/failures/sec1") == 1)) { } else if ((getprop("/systems/fctl/sec1") == 0) or (getprop("/systems/failures/sec1") == 1)) {
me["sec1"].setColor(0.7333,0.3803,0); me["sec1"].setColor(0.7333,0.3803,0);
me["path4249-3-6-7"].setColor(0.7333,0.3803,0); me["path4249-3-6-7"].setColor(0.7333,0.3803,0);
} }
if (getprop("/systems/fctl/sec2")) { if (getprop("/systems/fctl/sec2")) {
me["sec2"].setColor(0.0667,0.7294,0.3137); me["sec2"].setColor(0.0667,0.9450,0.3686);
me["path4249-3-6-7-5"].setColor(0.0667,0.7294,0.3137); me["path4249-3-6-7-5"].setColor(0.0667,0.9450,0.3686);
} else if ((getprop("/systems/fctl/sec2") == 0) or (getprop("/systems/failures/sec2") == 1)) { } else if ((getprop("/systems/fctl/sec2") == 0) or (getprop("/systems/failures/sec2") == 1)) {
me["sec2"].setColor(0.7333,0.3803,0); me["sec2"].setColor(0.7333,0.3803,0);
me["path4249-3-6-7-5"].setColor(0.7333,0.3803,0); me["path4249-3-6-7-5"].setColor(0.7333,0.3803,0);
} }
if (getprop("/systems/fctl/sec3")) { if (getprop("/systems/fctl/sec3")) {
me["sec3"].setColor(0.0667,0.7294,0.3137); me["sec3"].setColor(0.0667,0.9450,0.3686);
me["path4249-3-6"].setColor(0.0667,0.7294,0.3137); me["path4249-3-6"].setColor(0.0667,0.9450,0.3686);
} else if ((getprop("/systems/fctl/sec3") == 0) or (getprop("/systems/failures/sec3") == 1)) { } else if ((getprop("/systems/fctl/sec3") == 0) or (getprop("/systems/failures/sec3") == 1)) {
me["sec3"].setColor(0.7333,0.3803,0); me["sec3"].setColor(0.7333,0.3803,0);
me["path4249-3-6"].setColor(0.7333,0.3803,0); me["path4249-3-6"].setColor(0.7333,0.3803,0);
@ -647,12 +651,12 @@ var canvas_lowerECAM_fctl = {
# Hydraulic Indicators # Hydraulic Indicators
if (getprop("/systems/hydraulic/blue-psi") >= 1500) { if (getprop("/systems/hydraulic/blue-psi") >= 1500) {
me["ailLblue"].setColor(0.0667,0.7294,0.3137); me["ailLblue"].setColor(0.0667,0.9450,0.3686);
me["ailRblue"].setColor(0.0667,0.7294,0.3137); me["ailRblue"].setColor(0.0667,0.9450,0.3686);
me["elevLblue"].setColor(0.0667,0.7294,0.3137); me["elevLblue"].setColor(0.0667,0.9450,0.3686);
me["elevRblue"].setColor(0.0667,0.7294,0.3137); me["elevRblue"].setColor(0.0667,0.9450,0.3686);
me["rudderblue"].setColor(0.0667,0.7294,0.3137); me["rudderblue"].setColor(0.0667,0.9450,0.3686);
me["spdbrkblue"].setColor(0.0667,0.7294,0.3137); me["spdbrkblue"].setColor(0.0667,0.9450,0.3686);
} else { } else {
me["ailLblue"].setColor(0.7333,0.3803,0); me["ailLblue"].setColor(0.7333,0.3803,0);
me["ailRblue"].setColor(0.7333,0.3803,0); me["ailRblue"].setColor(0.7333,0.3803,0);
@ -663,12 +667,12 @@ var canvas_lowerECAM_fctl = {
} }
if (getprop("/systems/hydraulic/green-psi") >= 1500) { if (getprop("/systems/hydraulic/green-psi") >= 1500) {
me["ailLgreen"].setColor(0.0667,0.7294,0.3137); me["ailLgreen"].setColor(0.0667,0.9450,0.3686);
me["ailRgreen"].setColor(0.0667,0.7294,0.3137); me["ailRgreen"].setColor(0.0667,0.9450,0.3686);
me["elevLgreen"].setColor(0.0667,0.7294,0.3137); me["elevLgreen"].setColor(0.0667,0.9450,0.3686);
me["ruddergreen"].setColor(0.0667,0.7294,0.3137); me["ruddergreen"].setColor(0.0667,0.9450,0.3686);
me["PTgreen"].setColor(0.0667,0.7294,0.3137); me["PTgreen"].setColor(0.0667,0.9450,0.3686);
me["spdbrkgreen"].setColor(0.0667,0.7294,0.3137); me["spdbrkgreen"].setColor(0.0667,0.9450,0.3686);
} else { } else {
me["ailLgreen"].setColor(0.7333,0.3803,0); me["ailLgreen"].setColor(0.7333,0.3803,0);
me["ailRgreen"].setColor(0.7333,0.3803,0); me["ailRgreen"].setColor(0.7333,0.3803,0);
@ -679,10 +683,10 @@ var canvas_lowerECAM_fctl = {
} }
if (getprop("/systems/hydraulic/yellow-psi") >= 1500) { if (getprop("/systems/hydraulic/yellow-psi") >= 1500) {
me["elevRyellow"].setColor(0.0667,0.7294,0.3137); me["elevRyellow"].setColor(0.0667,0.9450,0.3686);
me["rudderyellow"].setColor(0.0667,0.7294,0.3137); me["rudderyellow"].setColor(0.0667,0.9450,0.3686);
me["PTyellow"].setColor(0.0667,0.7294,0.3137); me["PTyellow"].setColor(0.0667,0.9450,0.3686);
me["spdbrkyellow"].setColor(0.0667,0.7294,0.3137); me["spdbrkyellow"].setColor(0.0667,0.9450,0.3686);
} else { } else {
me["elevRyellow"].setColor(0.7333,0.3803,0); me["elevRyellow"].setColor(0.7333,0.3803,0);
me["rudderyellow"].setColor(0.7333,0.3803,0); me["rudderyellow"].setColor(0.7333,0.3803,0);
@ -742,7 +746,7 @@ var canvas_lowerECAM_wheel = {
} else if (!askidsw and yellow_psi >= 1500) { } else if (!askidsw and yellow_psi >= 1500) {
me["NWStext"].show(); me["NWStext"].show();
me["NWS"].show(); me["NWS"].show();
me["NWS"].setColor(0.0667,0.7294,0.3137); me["NWS"].setColor(0.0667,0.9450,0.3686);
me["NWSrect"].show(); me["NWSrect"].show();
me["antiskidtext"].show(); me["antiskidtext"].show();
me["antiskidtext"].setColor(0.7333,0.3803,0); me["antiskidtext"].setColor(0.7333,0.3803,0);
@ -771,7 +775,7 @@ var canvas_lowerECAM_wheel = {
me["NORMbrk"].show(); me["NORMbrk"].show();
me["normbrk-rect"].show(); me["normbrk-rect"].show();
me["NORMbrk"].setColor(0.7333,0.3803,0); me["NORMbrk"].setColor(0.7333,0.3803,0);
me["normbrkhyd"].setColor(0.0667,0.7294,0.3137); me["normbrkhyd"].setColor(0.0667,0.9450,0.3686);
} else if (green_psi < 1500 or !askidsw) { } else if (green_psi < 1500 or !askidsw) {
me["NORMbrk"].show(); me["NORMbrk"].show();
me["normbrk-rect"].show(); me["normbrk-rect"].show();
@ -786,7 +790,7 @@ var canvas_lowerECAM_wheel = {
} else if (yellow_psi >= 1500) { } else if (yellow_psi >= 1500) {
me["ALTNbrk"].show(); me["ALTNbrk"].show();
me["altnbrk-rect"].show(); me["altnbrk-rect"].show();
me["altnbrkhyd"].setColor(0.0667,0.7294,0.3137); me["altnbrkhyd"].setColor(0.0667,0.9450,0.3686);
} else { } else {
me["ALTNbrk"].show(); me["ALTNbrk"].show();
me["altnbrk-rect"].show(); me["altnbrk-rect"].show();
@ -800,7 +804,7 @@ var canvas_lowerECAM_wheel = {
} else if (brakemode == 2 and accum > 200 and yellow_psi >= 1500){ } else if (brakemode == 2 and accum > 200 and yellow_psi >= 1500){
me["accupress_text"].show(); me["accupress_text"].show();
me["brakearrow"].show(); me["brakearrow"].show();
me["accupress_text"].setColor(0.0667,0.7294,0.3137); me["accupress_text"].setColor(0.0667,0.9450,0.3686);
} else if (brakemode == 2 and accum > 200 and yellow_psi < 1500) { } else if (brakemode == 2 and accum > 200 and yellow_psi < 1500) {
me["accuonlyarrow"].show(); me["accuonlyarrow"].show();
me["accuonly"].show(); me["accuonly"].show();
@ -820,21 +824,21 @@ var canvas_lowerECAM_wheel = {
me["nosegeardoorR"].setRotation(getprop("/ECAM/Lower/door-nose-right") * D2R); me["nosegeardoorR"].setRotation(getprop("/ECAM/Lower/door-nose-right") * D2R);
if (nosedoor == 0) { if (nosedoor == 0) {
me["nosegeardoorL"].setColorFill(0.0667,0.7294,0.3137); me["nosegeardoorL"].setColorFill(0.0667,0.9450,0.3686);
me["nosegeardoorR"].setColorFill(0.0667,0.7294,0.3137); me["nosegeardoorR"].setColorFill(0.0667,0.9450,0.3686);
} else { } else {
me["nosegeardoorL"].setColorFill(0.7333,0.3803,0); me["nosegeardoorL"].setColorFill(0.7333,0.3803,0);
me["nosegeardoorR"].setColorFill(0.7333,0.3803,0); me["nosegeardoorR"].setColorFill(0.7333,0.3803,0);
} }
if (leftdoor == 0) { if (leftdoor == 0) {
me["leftdoor"].setColorFill(0.0667,0.7294,0.3137); me["leftdoor"].setColorFill(0.0667,0.9450,0.3686);
} else { } else {
me["leftdoor"].setColorFill(0.7333,0.3803,0); me["leftdoor"].setColorFill(0.7333,0.3803,0);
} }
if (rightdoor == 0) { if (rightdoor == 0) {
me["rightdoor"].setColorFill(0.0667,0.7294,0.3137); me["rightdoor"].setColorFill(0.0667,0.9450,0.3686);
} else { } else {
me["rightdoor"].setColorFill(0.7333,0.3803,0); me["rightdoor"].setColorFill(0.7333,0.3803,0);
} }
@ -849,8 +853,8 @@ var canvas_lowerECAM_wheel = {
} }
if (leftgear == 1) { if (leftgear == 1) {
me["Triangle-Left1"].setColor(0.0667,0.7294,0.3137); me["Triangle-Left1"].setColor(0.0667,0.9450,0.3686);
me["Triangle-Left2"].setColor(0.0667,0.7294,0.3137); me["Triangle-Left2"].setColor(0.0667,0.9450,0.3686);
} else { } else {
me["Triangle-Left1"].setColor(1,0,0); me["Triangle-Left1"].setColor(1,0,0);
me["Triangle-Left2"].setColor(1,0,0); me["Triangle-Left2"].setColor(1,0,0);
@ -865,8 +869,8 @@ var canvas_lowerECAM_wheel = {
} }
if (nosegear == 1) { if (nosegear == 1) {
me["Triangle-Nose1"].setColor(0.0667,0.7294,0.3137); me["Triangle-Nose1"].setColor(0.0667,0.9450,0.3686);
me["Triangle-Nose2"].setColor(0.0667,0.7294,0.3137); me["Triangle-Nose2"].setColor(0.0667,0.9450,0.3686);
} else { } else {
me["Triangle-Nose1"].setColor(1,0,0); me["Triangle-Nose1"].setColor(1,0,0);
me["Triangle-Nose2"].setColor(1,0,0); me["Triangle-Nose2"].setColor(1,0,0);
@ -881,8 +885,8 @@ var canvas_lowerECAM_wheel = {
} }
if (rightgear == 1) { if (rightgear == 1) {
me["Triangle-Right1"].setColor(0.0667,0.7294,0.3137); me["Triangle-Right1"].setColor(0.0667,0.9450,0.3686);
me["Triangle-Right2"].setColor(0.0667,0.7294,0.3137); me["Triangle-Right2"].setColor(0.0667,0.9450,0.3686);
} else { } else {
me["Triangle-Right1"].setColor(1,0,0); me["Triangle-Right1"].setColor(1,0,0);
me["Triangle-Right2"].setColor(1,0,0); me["Triangle-Right2"].setColor(1,0,0);
@ -999,8 +1003,8 @@ var canvas_lowerECAM_wheel = {
me["spoiler1Lf"].hide(); me["spoiler1Lf"].hide();
} }
} else { } else {
me["spoiler1Lex"].setColor(0.0667,0.7294,0.3137); me["spoiler1Lex"].setColor(0.0667,0.9450,0.3686);
me["spoiler1Lrt"].setColor(0.0667,0.7294,0.3137); me["spoiler1Lrt"].setColor(0.0667,0.9450,0.3686);
me["spoiler1Lf"].hide(); me["spoiler1Lf"].hide();
} }
@ -1013,8 +1017,8 @@ var canvas_lowerECAM_wheel = {
me["spoiler2Lf"].hide(); me["spoiler2Lf"].hide();
} }
} else { } else {
me["spoiler2Lex"].setColor(0.0667,0.7294,0.3137); me["spoiler2Lex"].setColor(0.0667,0.9450,0.3686);
me["spoiler2Lrt"].setColor(0.0667,0.7294,0.3137); me["spoiler2Lrt"].setColor(0.0667,0.9450,0.3686);
me["spoiler2Lf"].hide(); me["spoiler2Lf"].hide();
} }
@ -1027,8 +1031,8 @@ var canvas_lowerECAM_wheel = {
me["spoiler3Lf"].hide(); me["spoiler3Lf"].hide();
} }
} else { } else {
me["spoiler3Lex"].setColor(0.0667,0.7294,0.3137); me["spoiler3Lex"].setColor(0.0667,0.9450,0.3686);
me["spoiler3Lrt"].setColor(0.0667,0.7294,0.3137); me["spoiler3Lrt"].setColor(0.0667,0.9450,0.3686);
me["spoiler3Lf"].hide(); me["spoiler3Lf"].hide();
} }
@ -1041,8 +1045,8 @@ var canvas_lowerECAM_wheel = {
me["spoiler4Lf"].hide(); me["spoiler4Lf"].hide();
} }
} else { } else {
me["spoiler4Lex"].setColor(0.0667,0.7294,0.3137); me["spoiler4Lex"].setColor(0.0667,0.9450,0.3686);
me["spoiler4Lrt"].setColor(0.0667,0.7294,0.3137); me["spoiler4Lrt"].setColor(0.0667,0.9450,0.3686);
me["spoiler4Lf"].hide(); me["spoiler4Lf"].hide();
} }
@ -1055,8 +1059,8 @@ var canvas_lowerECAM_wheel = {
me["spoiler5Lf"].hide(); me["spoiler5Lf"].hide();
} }
} else { } else {
me["spoiler5Lex"].setColor(0.0667,0.7294,0.3137); me["spoiler5Lex"].setColor(0.0667,0.9450,0.3686);
me["spoiler5Lrt"].setColor(0.0667,0.7294,0.3137); me["spoiler5Lrt"].setColor(0.0667,0.9450,0.3686);
me["spoiler5Lf"].hide(); me["spoiler5Lf"].hide();
} }
@ -1069,8 +1073,8 @@ var canvas_lowerECAM_wheel = {
me["spoiler1Rf"].hide(); me["spoiler1Rf"].hide();
} }
} else { } else {
me["spoiler1Rex"].setColor(0.0667,0.7294,0.3137); me["spoiler1Rex"].setColor(0.0667,0.9450,0.3686);
me["spoiler1Rrt"].setColor(0.0667,0.7294,0.3137); me["spoiler1Rrt"].setColor(0.0667,0.9450,0.3686);
me["spoiler1Rf"].hide(); me["spoiler1Rf"].hide();
} }
@ -1083,8 +1087,8 @@ var canvas_lowerECAM_wheel = {
me["spoiler2Rf"].hide(); me["spoiler2Rf"].hide();
} }
} else { } else {
me["spoiler2Rex"].setColor(0.0667,0.7294,0.3137); me["spoiler2Rex"].setColor(0.0667,0.9450,0.3686);
me["spoiler2Rrt"].setColor(0.0667,0.7294,0.3137); me["spoiler2Rrt"].setColor(0.0667,0.9450,0.3686);
me["spoiler2Rf"].hide(); me["spoiler2Rf"].hide();
} }
@ -1097,8 +1101,8 @@ var canvas_lowerECAM_wheel = {
me["spoiler3Rf"].hide(); me["spoiler3Rf"].hide();
} }
} else { } else {
me["spoiler3Rex"].setColor(0.0667,0.7294,0.3137); me["spoiler3Rex"].setColor(0.0667,0.9450,0.3686);
me["spoiler3Rrt"].setColor(0.0667,0.7294,0.3137); me["spoiler3Rrt"].setColor(0.0667,0.9450,0.3686);
me["spoiler3Rf"].hide(); me["spoiler3Rf"].hide();
} }
@ -1111,8 +1115,8 @@ var canvas_lowerECAM_wheel = {
me["spoiler4Rf"].hide(); me["spoiler4Rf"].hide();
} }
} else { } else {
me["spoiler4Rex"].setColor(0.0667,0.7294,0.3137); me["spoiler4Rex"].setColor(0.0667,0.9450,0.3686);
me["spoiler4Rrt"].setColor(0.0667,0.7294,0.3137); me["spoiler4Rrt"].setColor(0.0667,0.9450,0.3686);
me["spoiler4Rf"].hide(); me["spoiler4Rf"].hide();
} }
@ -1125,8 +1129,8 @@ var canvas_lowerECAM_wheel = {
me["spoiler5Rf"].hide(); me["spoiler5Rf"].hide();
} }
} else { } else {
me["spoiler5Rex"].setColor(0.0667,0.7294,0.3137); me["spoiler5Rex"].setColor(0.0667,0.9450,0.3686);
me["spoiler5Rrt"].setColor(0.0667,0.7294,0.3137); me["spoiler5Rrt"].setColor(0.0667,0.9450,0.3686);
me["spoiler5Rf"].hide(); me["spoiler5Rf"].hide();
} }
@ -1151,7 +1155,8 @@ var canvas_lowerECAM_elec = {
return m; return m;
}, },
getKeys: func() { getKeys: func() {
return ["TAT","SAT","GW","BAT1volts","BAT1amps","BAT1v","BAT1a","BAT1off","BAT2volts","BAT2amps","BAT2v","BAT2a","BAT2off","TR1volts","TR1amps","TR2volts","TR2amps","EMERGENvolts","EXTvolts","EXThz"]; return ["TAT","SAT","GW","BAT1connectorA","BAT1connectorB","BAT2connectorA","BAT2connectorB","BAT1volts","BAT1amps","BAT1v","BAT1a","BAT1off","BAT2volts","BAT2amps","BAT2v","BAT2a","BAT2off","TR1volts","TR1amps","TR2volts","TR2amps","EMERGENvolts","EXTvolts","EXThz",
"DCbattext"];
}, },
update: func() { update: func() {
if (getprop("/controls/electrical/switches/battery1") == 0) { if (getprop("/controls/electrical/switches/battery1") == 0) {
@ -1181,18 +1186,90 @@ var canvas_lowerECAM_elec = {
me["BAT2off"].hide(); me["BAT2off"].hide();
} }
if (getprop("/systems/electrical/battery1-contact") == 0 and getprop("/systems/electrical/bat1direction") == 0) {
me["BAT1connectorA"].hide();
me["BAT1connectorB"].hide();
} else if (getprop("/systems/electrical/battery1-contact") == 1 and getprop("/systems/electrical/bat1direction") == -1) {
me["BAT1connectorA"].hide();
me["BAT1connectorB"].show();
me["BAT1connectorB"].setRotation(getprop("/ECAM/Lower/bat1-contactrotation") * D2R);
} else if (getprop("/systems/electrical/battery1-contact") == 1 and getprop("/systems/electrical/bat1direction") == 2) {
me["BAT1connectorA"].show();
me["BAT1connectorB"].hide();
} else if (getprop("/systems/electrical/battery1-contact") == 1 and getprop("/systems/electrical/bat1direction") == 1) {
me["BAT1connectorA"].hide();
me["BAT1connectorB"].show();
me["BAT1connectorB"].setRotation(getprop("/ECAM/Lower/bat2-contactrotation") * D2R);
}
if (getprop("/systems/electrical/battery2-contact") == 0 and getprop("/systems/electrical/bat2direction") == 0) {
me["BAT2connectorA"].hide();
me["BAT2connectorB"].hide();
} else if (getprop("/systems/electrical/battery2-contact") == 1 and getprop("/systems/electrical/bat2direction") == -1) {
me["BAT2connectorA"].hide();
me["BAT2connectorB"].show();
me["BAT2connectorB"].setRotation(getprop("/ECAM/Lower/bat2-contactrotation") * D2R);
} else if (getprop("/systems/electrical/battery2-contact") == 1 and getprop("/systems/electrical/bat2direction") == 2) {
me["BAT2connectorA"].show();
me["BAT2connectorB"].hide();
} else if (getprop("/systems/electrical/battery2-contact") == 1 and getprop("/systems/electrical/bat2direction") == 1) {
me["BAT2connectorA"].hide();
me["BAT2connectorB"].show();
me["BAT2connectorB"].setRotation(getprop("/ECAM/Lower/bat2-contactrotation") * D2R);
}
if (getprop("/systems/electrical/bus/dcbat") < 25) {
me["DCbattext"].setColor(0.7333,0.3803,0);
} else {
me["DCbattext"].setColor(0.0667,0.9450,0.3686);
}
if (getprop("/systems/electrical/bus/dc1") < 25) {
me["TR1volts"].setColor(0.7333,0.3803,0);
} else {
me["TR1volts"].setcolor(0.0667,0.9450,0.3686);
}
if (getprop("/systems/electrical/bus/dc2") < 25) {
me["TR2volts"].setColor(0.7333,0.3803,0);
} else {
me["TR2volts"].setcolor(0.0667,0.9450,0.3686);
}
if (getprop("/systems/electrical/bus/dc1-amps") <= 5) {
me["TR1amps"].setColor(0.7333,0.3803,0);
} else {
me["TR1amps"].setcolor(0.0667,0.9450,0.3686);
}
if (getprop("/systems/electrical/bus/dc2-amps") <= 5) {
me["TR2amps"].setColor(0.7333,0.3803,0);
} else {
me["TR2amps"].setcolor(0.0667,0.9450,0.3686);
}
me["BAT1volts"].setText(sprintf("%2.0f", getprop("/systems/electrical/battery1-volts"))); me["BAT1volts"].setText(sprintf("%2.0f", getprop("/systems/electrical/battery1-volts")));
me["BAT2volts"].setText(sprintf("%2.0f", getprop("/systems/electrical/battery2-volts"))); me["BAT2volts"].setText(sprintf("%2.0f", getprop("/systems/electrical/battery2-volts")));
me["BAT1amps"].setText(sprintf("%3.0f", getprop("/systems/electrical/battery1-amps"))); me["BAT1amps"].setText(sprintf("%3.0f", getprop("/systems/electrical/battery1-amps")));
me["BAT2amps"].setText(sprintf("%3.0f", getprop("/systems/electrical/battery2-amps"))); me["BAT2amps"].setText(sprintf("%3.0f", getprop("/systems/electrical/battery2-amps")));
me["TR1volts"].setText(sprintf("%2.0f", getprop("/systems/electrical/dc1"))); me["TR1volts"].setText(sprintf("%2.0f", getprop("/systems/electrical/bus/dc1")));
me["TR1amps"].setText(sprintf("%2.0f", getprop("/systems/electrical/bus/dc1-amps"))); me["TR1amps"].setText(sprintf("%2.0f", getprop("/systems/electrical/bus/dc1-amps")));
me["TR2volts"].setText(sprintf("%2.0f", getprop("/systems/electrical/dc2"))); me["TR2volts"].setText(sprintf("%2.0f", getprop("/systems/electrical/bus/dc2")));
me["TR2amps"].setText(sprintf("%2.0f", getprop("/systems/electrical/bus/dc2-amps"))); me["TR2amps"].setText(sprintf("%2.0f", getprop("/systems/electrical/bus/dc2-amps")));
me["EXTvolts"].setText(sprintf("%2.0f", getprop("/systems/electrical/extra/ext-volts"))); me["EXTvolts"].setText(sprintf("%2.0f", getprop("/systems/electrical/extra/ext-volts")));
me["EXThz"].setText(sprintf("%2.0f", getprop("/systems/electrical/extra/ext-hz"))); me["EXThz"].setText(sprintf("%2.0f", getprop("/systems/electrical/extra/ext-hz")));
me["ESSTRvolts"].hide();
me["ESSTRv"].hide();
me["ESSTRamps"].hide();
me["ESSTRa"].hide();
me["ESSTRvolts"].hide();
me["ESSTRbox"].hide();
me["EMERGENtoESSTRarrow"].hide();
me["ESSTRtoDCESSline"].hide();
me.updateBottomStatus(); me.updateBottomStatus();
}, },
}; };

View file

@ -41,9 +41,9 @@
inkscape:window-height="706" inkscape:window-height="706"
id="namedview371" id="namedview371"
showgrid="false" showgrid="false"
inkscape:zoom="1.13" inkscape:zoom="1.06"
inkscape:cx="790.96106" inkscape:cx="602.52814"
inkscape:cy="891.32878" inkscape:cy="188.23734"
inkscape:window-x="-8" inkscape:window-x="-8"
inkscape:window-y="-8" inkscape:window-y="-8"
inkscape:window-maximized="1" inkscape:window-maximized="1"
@ -52,6 +52,13 @@
type="xygrid" type="xygrid"
id="grid5153" /> id="grid5153" />
</sodipodi:namedview> </sodipodi:namedview>
<path
style="fill:none;fill-rule:evenodd;stroke:#11f15e;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 449.10606,309.08842 -0.017,14.94575"
id="ESSTRtoDCESSline"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:label="#path4365" />
<text <text
inkscape:label="#text4352" inkscape:label="#text4352"
transform="scale(0.95153898,1.0509291)" transform="scale(0.95153898,1.0509291)"
@ -59,7 +66,7 @@
id="TR2amps" id="TR2amps"
y="395.94537" y="395.94537"
x="917.49561" x="917.49561"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11ba50;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;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve"><tspan xml:space="preserve"><tspan
y="395.94537" y="395.94537"
x="917.49561" x="917.49561"
@ -68,7 +75,7 @@
<text <text
inkscape:label="#text4348" inkscape:label="#text4348"
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11ba50;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;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="917.90704" x="917.90704"
y="359.43622" y="359.43622"
id="TR2volts" id="TR2volts"
@ -81,7 +88,7 @@
<text <text
inkscape:label="#text4364" inkscape:label="#text4364"
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11ba50;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;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="482.59613" x="482.59613"
y="432.91299" y="432.91299"
id="ESSTRamps" id="ESSTRamps"
@ -98,7 +105,7 @@
id="ESSTRvolts" id="ESSTRvolts"
y="393.67548" y="393.67548"
x="482.51349" x="482.51349"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11ba50;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;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve"><tspan xml:space="preserve"><tspan
y="393.67548" y="393.67548"
x="482.51349" x="482.51349"
@ -110,7 +117,7 @@
id="EMERGENhz" id="EMERGENhz"
y="437.85632" y="437.85632"
x="734.34668" x="734.34668"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11ba50;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;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve" xml:space="preserve"
inkscape:label="#text4364"><tspan inkscape:label="#text4364"><tspan
y="437.85632" y="437.85632"
@ -119,7 +126,7 @@
sodipodi:role="line">000</tspan></text> sodipodi:role="line">000</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11ba50;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;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="734.26404" x="734.26404"
y="398.6188" y="398.6188"
id="EMERGENvolts" id="EMERGENvolts"
@ -136,7 +143,7 @@
id="BAT1amps" id="BAT1amps"
y="185.19817" y="185.19817"
x="355.20428" x="355.20428"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11ba50;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;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve" xml:space="preserve"
inkscape:label="#text4364"><tspan inkscape:label="#text4364"><tspan
y="185.19817" y="185.19817"
@ -145,7 +152,7 @@
sodipodi:role="line">000</tspan></text> sodipodi:role="line">000</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11ba50;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;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="355.12164" x="355.12164"
y="145.96063" y="145.96063"
id="BAT1volts" id="BAT1volts"
@ -159,7 +166,7 @@
<text <text
inkscape:label="#text4364" inkscape:label="#text4364"
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11ba50;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;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="742.23285" x="742.23285"
y="184.64891" y="184.64891"
id="BAT2amps" id="BAT2amps"
@ -176,7 +183,7 @@
id="BAT2volts" id="BAT2volts"
y="145.41138" y="145.41138"
x="742.15021" x="742.15021"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11ba50;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;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve"><tspan xml:space="preserve"><tspan
y="145.41138" y="145.41138"
x="742.15021" x="742.15021"
@ -197,6 +204,19 @@
id="ACESSrect" id="ACESSrect"
style="opacity:1;fill:#898989;fill-opacity:1;stroke:#898989;stroke-width:2.76148129;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="opacity:1;fill:#898989;fill-opacity:1;stroke:#898989;stroke-width:2.76148129;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:label="#rect4228" /> inkscape:label="#rect4228" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.66583824px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#bb4600;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="464.5358"
y="488.01022"
id="ACESSshed"
sodipodi:linespacing="125%"
transform="scale(0.90334261,1.1069997)"
inkscape:label="#text4234"><tspan
sodipodi:role="line"
id="tspan4236"
x="464.5358"
y="488.01022">AC ESS SHED</tspan></text>
<rect <rect
style="opacity:1;fill:#898989;fill-opacity:1;stroke:#898989;stroke-width:2.4000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="opacity:1;fill:#898989;fill-opacity:1;stroke:#898989;stroke-width:2.4000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="AC1rect" id="AC1rect"
@ -206,32 +226,33 @@
y="487.30753" y="487.30753"
inkscape:label="#rect4220" /> inkscape:label="#rect4220" />
<g <g
id="g913"> id="g913"
style="stroke:none;stroke-opacity:1;fill:#4d4d4d;fill-opacity:1">
<rect <rect
y="899.43646" y="899.43646"
x="0.19175777" x="0.19175777"
height="8.496521" height="8.496521"
width="1023.9024" width="1023.9024"
id="rect3952" id="rect3952"
style="fill:#515256;fill-opacity:1" /> style="fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-opacity:1" />
<rect <rect
y="907.93317" y="907.93317"
x="355.13541" x="355.13541"
height="116.24162" height="116.24162"
width="8.7250061" width="8.7250061"
id="rect3956" id="rect3956"
style="fill:#515256;fill-opacity:1" /> style="fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-opacity:1" />
<rect <rect
y="907.92108" y="907.92108"
x="668.33417" x="668.33417"
height="116.24162" height="116.24162"
width="8.7250061" width="8.7250061"
id="rect3956-4" id="rect3956-4"
style="fill:#515256;fill-opacity:1" /> style="fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-opacity:1" />
</g> </g>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#238995;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;letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="286.01636" x="286.01636"
y="947.15186" y="947.15186"
id="text6231"><tspan id="text6231"><tspan
@ -239,10 +260,10 @@
id="tspan3726-1-4-5" id="tspan3726-1-4-5"
x="286.01636" x="286.01636"
y="947.15186" y="947.15186"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:1.25;font-family:Arial;-inkscape-font-specification:Arial;fill:#238995;fill-opacity:1">°C</tspan></text> style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:1.25;font-family:Arial;-inkscape-font-specification:Arial;fill:#1ca8d2;fill-opacity:1;">°C</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#238995;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;letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="500.75214" x="500.75214"
y="974.06525" y="974.06525"
id="text6232"><tspan id="text6232"><tspan
@ -250,10 +271,10 @@
id="tspan3726-1-4-5-7" id="tspan3726-1-4-5-7"
x="500.75214" x="500.75214"
y="974.06525" y="974.06525"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:34px;line-height:1.25;font-family:Arial;-inkscape-font-specification:Arial;fill:#238995;fill-opacity:1">H</tspan></text> style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:34px;line-height:1.25;font-family:Arial;-inkscape-font-specification:Arial;fill:#1ca8d2;fill-opacity:1;">H</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#238995;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;letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="285.86758" x="285.86758"
y="1008.0583" y="1008.0583"
id="text6233"><tspan id="text6233"><tspan
@ -261,10 +282,10 @@
id="tspan3726-1-4-5-3" id="tspan3726-1-4-5-3"
x="285.86758" x="285.86758"
y="1008.0583" y="1008.0583"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:1.25;font-family:Arial;-inkscape-font-specification:Arial;fill:#238995;fill-opacity:1">°C</tspan></text> style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:1.25;font-family:Arial;-inkscape-font-specification:Arial;fill:#1ca8d2;fill-opacity:1;">°C</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#238995;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;letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="940.17981" x="940.17981"
y="947.52124" y="947.52124"
id="text6234"><tspan id="text6234"><tspan
@ -272,7 +293,7 @@
id="tspan3726-1-4-5-7-7" id="tspan3726-1-4-5-7-7"
x="940.17981" x="940.17981"
y="947.52124" y="947.52124"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:1.25;font-family:Arial;-inkscape-font-specification:Arial;fill:#238995;fill-opacity:1">LBS</tspan></text> style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:1.25;font-family:Arial;-inkscape-font-specification:Arial;fill:#1ca8d2;fill-opacity:1;">LBS</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;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;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
@ -308,7 +329,7 @@
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:34px;line-height:1.25;font-family:Arial;-inkscape-font-specification:Arial;fill:#cecdce">SAT</tspan></text> style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:34px;line-height:1.25;font-family:Arial;-inkscape-font-specification:Arial;fill:#cecdce">SAT</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:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;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:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="268.61197" x="268.61197"
y="947.13043" y="947.13043"
id="TAT" id="TAT"
@ -317,10 +338,10 @@
id="tspan5151-5-7-1" id="tspan5151-5-7-1"
x="268.61197" x="268.61197"
y="947.13043" y="947.13043"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:34px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#11ba50">25</tspan></text> style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:34px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#11f15e;fill-opacity:1;">25</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:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;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:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="268.61197" x="268.61197"
y="1007.5985" y="1007.5985"
id="SAT" id="SAT"
@ -329,10 +350,10 @@
id="tspan5151-5-7-1-0" id="tspan5151-5-7-1-0"
x="268.61197" x="268.61197"
y="1007.5985" y="1007.5985"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:34px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#11ba50">25</tspan></text> style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:34px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#11f15e;fill-opacity:1;">25</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:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;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:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="925.0899" x="925.0899"
y="946.6001" y="946.6001"
id="GW" id="GW"
@ -341,7 +362,7 @@
id="tspan5151-5-7-1-9" id="tspan5151-5-7-1-9"
x="925.0899" x="925.0899"
y="946.6001" y="946.6001"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:34px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#11ba50">120000</tspan></text> style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:34px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#11f15e;fill-opacity:1;">120000</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.47559071px;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" style="font-style:normal;font-weight:normal;font-size:10.47559071px;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
@ -497,7 +518,7 @@
y="672.15063">OFF</tspan></text> y="672.15063">OFF</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:39.96159744px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#11ba50;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" style="font-style:normal;font-weight:normal;font-size:39.96159744px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="904.09674" x="904.09674"
y="607.9046" y="607.9046"
id="GEN2load" id="GEN2load"
@ -522,7 +543,7 @@
y="611.73309">2</tspan></text> y="611.73309">2</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:32px;line-height:125%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#238995;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;-inkscape-font-specification:'Liberation Sans';font-stretch:normal;font-variant:normal;" style="font-style:normal;font-weight:normal;font-size:32px;line-height:125%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;-inkscape-font-specification:'Liberation Sans';font-stretch:normal;font-variant:normal;"
x="901.27545" x="901.27545"
y="649.2984" y="649.2984"
id="GEN2percent" id="GEN2percent"
@ -534,7 +555,7 @@
y="649.2984">%</tspan></text> y="649.2984">%</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#238995;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;-inkscape-font-specification:'Liberation Sans';font-stretch:normal;font-variant:normal;" style="font-style:normal;font-weight:normal;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;-inkscape-font-specification:'Liberation Sans';font-stretch:normal;font-variant:normal;"
x="896.23999" x="896.23999"
y="700.47192" y="700.47192"
id="GEN2v" id="GEN2v"
@ -547,7 +568,7 @@
y="700.47192">V</tspan></text> y="700.47192">V</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:23.59383774px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#238995;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" style="font-style:normal;font-weight:normal;font-size:23.59383774px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="1042.8979" x="1042.8979"
y="634.04449" y="634.04449"
id="GEN2hzlabel" id="GEN2hzlabel"
@ -558,10 +579,10 @@
id="tspan4297" id="tspan4297"
x="1042.8979" x="1042.8979"
y="634.04449" y="634.04449"
style="-inkscape-font-specification:'Liberation Sans';font-family:'Liberation Sans';font-weight:normal;font-style:normal;font-stretch:normal;font-variant:normal">HZ</tspan></text> style="-inkscape-font-specification:'Liberation Sans';font-family:'Liberation Sans';font-weight:normal;font-style:normal;font-stretch:normal;font-variant:normal;fill:#1ca8d2;fill-opacity:1;">HZ</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;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;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="864.29346" x="864.29346"
y="658.28491" y="658.28491"
id="GEN2volts" id="GEN2volts"
@ -578,7 +599,7 @@
id="GEN2hz" id="GEN2hz"
y="696.24677" y="696.24677"
x="864.74432" x="864.74432"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;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;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve" xml:space="preserve"
inkscape:label="#text4307"><tspan inkscape:label="#text4307"><tspan
y="696.24677" y="696.24677"
@ -624,7 +645,7 @@
id="GEN1load" id="GEN1load"
y="607.9046" y="607.9046"
x="134.27649" x="134.27649"
style="font-style:normal;font-weight:normal;font-size:39.96159744px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#11ba50;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" style="font-style:normal;font-weight:normal;font-size:39.96159744px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve" xml:space="preserve"
inkscape:label="#text4321"><tspan inkscape:label="#text4321"><tspan
y="607.9046" y="607.9046"
@ -648,7 +669,7 @@
id="GEN1percent" id="GEN1percent"
y="649.2984" y="649.2984"
x="182.10985" x="182.10985"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#238995;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;font-size:32px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve" xml:space="preserve"
inkscape:label="#text4329"><tspan inkscape:label="#text4329"><tspan
y="649.2984" y="649.2984"
@ -661,7 +682,7 @@
id="GEN1v" id="GEN1v"
y="700.47192" y="700.47192"
x="186.64148" x="186.64148"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#238995;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;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve" xml:space="preserve"
inkscape:label="#text4333"><tspan inkscape:label="#text4333"><tspan
y="700.47192" y="700.47192"
@ -674,10 +695,10 @@
id="GEN1hzlabel" id="GEN1hzlabel"
y="634.04449" y="634.04449"
x="210.99562" x="210.99562"
style="font-style:normal;font-weight:normal;font-size:23.59383774px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#238995;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" style="font-style:normal;font-weight:normal;font-size:23.59383774px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve" xml:space="preserve"
inkscape:label="#text4337"><tspan inkscape:label="#text4337"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans'" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#1ca8d2;fill-opacity:1;"
y="634.04449" y="634.04449"
x="210.99562" x="210.99562"
id="tspan4339" id="tspan4339"
@ -688,7 +709,7 @@
id="GEN1volts" id="GEN1volts"
y="658.28491" y="658.28491"
x="108.5014" x="108.5014"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;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;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve" xml:space="preserve"
inkscape:label="#text4341"><tspan inkscape:label="#text4341"><tspan
y="658.28491" y="658.28491"
@ -697,7 +718,7 @@
sodipodi:role="line"> 0</tspan></text> sodipodi:role="line"> 0</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;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;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="108.95227" x="108.95227"
y="696.24677" y="696.24677"
id="GEN1hz" id="GEN1hz"
@ -716,19 +737,19 @@
style="fill:none;fill-rule:evenodd;stroke:#cdcecd;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;fill-rule:evenodd;stroke:#cdcecd;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:label="#path4349" /> inkscape:label="#path4349" />
<path <path
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.40147996;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;fill-rule:evenodd;stroke:#11f15e;stroke-width:2.40147996;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 169.76553,562.10234 686.19509,0" d="m 169.76553,562.10234 686.19509,0"
id="ACbustie" id="ACbustie"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
inkscape:label="#path4351" /> inkscape:label="#path4351" />
<path <path
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;fill-rule:evenodd;stroke:#11f15e;stroke-width:2.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 856.91643,569.50025 0,-8.59269" d="m 856.91643,569.50025 0,-8.59269"
id="GEN2connector" id="GEN2connector"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
inkscape:label="#path4355" /> inkscape:label="#path4355" />
<path <path
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;fill-rule:evenodd;stroke:#11f15e;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 856.97316,533.36355 -9.85784,11.93601 10.08752,0 10.40152,0 z m 0.0438,13.11569 -0.10596,14.50336 z" d="m 856.97316,533.36355 -9.85784,11.93601 10.08752,0 10.40152,0 z m 0.0438,13.11569 -0.10596,14.50336 z"
id="AC2arrow" id="AC2arrow"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -738,18 +759,18 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="GEN1connector" id="GEN1connector"
d="m 170.12468,569.71764 0,-8.59269" d="m 170.12468,569.71764 0,-8.59269"
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;fill-rule:evenodd;stroke:#11f15e;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:label="#path4362" /> inkscape:label="#path4362" />
<path <path
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="AC1arrow" id="AC1arrow"
d="m 169.71214,533.71512 -9.85784,12.10469 10.08752,0 10.40152,0 z m 0.0438,13.28437 0.36331,14.2005 z" d="m 169.71214,533.71512 -9.85784,12.10469 10.08752,0 10.40152,0 z m 0.0438,13.28437 0.36331,14.2005 z"
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;fill-rule:evenodd;stroke:#11f15e;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cccccccc" sodipodi:nodetypes="cccccccc"
inkscape:label="#path4364" /> inkscape:label="#path4364" />
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30.18091011px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;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;font-size:30.18091011px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="143.74011" x="143.74011"
y="489.99768" y="489.99768"
id="AC1label" id="AC1label"
@ -761,7 +782,7 @@
x="143.74011" x="143.74011"
y="489.99768">AC 1</tspan></text> y="489.99768">AC 1</tspan></text>
<path <path
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.39795303;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;fill-rule:evenodd;stroke:#11f15e;stroke-width:2.39795303;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 255.6181,520.4706 148.40383,0.1016" d="m 255.6181,520.4706 148.40383,0.1016"
id="AC1essConnector" id="AC1essConnector"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -773,32 +794,19 @@
id="ACESStext" id="ACESStext"
y="487.57932" y="487.57932"
x="507.83627" x="507.83627"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.66583824px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;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;font-size:28.66583824px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve" xml:space="preserve"
inkscape:label="#text4230"><tspan inkscape:label="#text4230"><tspan
y="487.57932" y="487.57932"
x="507.83627" x="507.83627"
id="tspan4232" id="tspan4232"
sodipodi:role="line">AC ESS</tspan></text> sodipodi:role="line">AC ESS</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.66583824px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#bb4600;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="464.5358"
y="488.01022"
id="ACESSshed"
sodipodi:linespacing="125%"
transform="scale(0.90334261,1.1069997)"
inkscape:label="#text4234"><tspan
sodipodi:role="line"
id="tspan4236"
x="464.5358"
y="488.01022">AC ESS SHED</tspan></text>
<path <path
sodipodi:nodetypes="cc" sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="AC2essConnector" id="AC2essConnector"
d="m 618.80268,520.47067 163.22009,0.10146" d="m 618.80268,520.47067 163.22009,0.10146"
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.51326656;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;fill-rule:evenodd;stroke:#11f15e;stroke-width:2.51326656;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:label="#path4238" /> inkscape:label="#path4238" />
<rect <rect
y="487.00995" y="487.00995"
@ -814,7 +822,7 @@
id="AC2text" id="AC2text"
y="489.71701" y="489.71701"
x="872.81879" x="872.81879"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30.18091011px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;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;font-size:30.18091011px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve" xml:space="preserve"
inkscape:label="#text4242"><tspan inkscape:label="#text4242"><tspan
y="489.71701" y="489.71701"
@ -822,7 +830,7 @@
id="tspan4244" id="tspan4244"
sodipodi:role="line">AC 2</tspan></text> sodipodi:role="line">AC 2</tspan></text>
<path <path
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;fill-rule:evenodd;stroke:#11f15e;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 795.56055,703.67969 -0.34571,48.70117 0.002,0.002 c 0.002,-0.33156 0.34375,-47.84568 0.34375,-48.70312 z m -0.34375,48.70312 c -4.31305,4.34932 -7.60645,8.43152 -11.99267,12.70659 l 24.55321,0.17441 z" d="m 795.56055,703.67969 -0.34571,48.70117 0.002,0.002 c 0.002,-0.33156 0.34375,-47.84568 0.34375,-48.70312 z m -0.34375,48.70312 c -4.31305,4.34932 -7.60645,8.43152 -11.99267,12.70659 l 24.55321,0.17441 z"
transform="scale(0.8,0.8)" transform="scale(0.8,0.8)"
id="EXTpwrconnector" id="EXTpwrconnector"
@ -842,7 +850,7 @@
id="EXTv" id="EXTv"
y="697.17621" y="697.17621"
x="658.26862" x="658.26862"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#238995;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;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve" xml:space="preserve"
inkscape:label="#text4253"><tspan inkscape:label="#text4253"><tspan
y="697.17621" y="697.17621"
@ -855,10 +863,10 @@
id="EXThzlabel" id="EXThzlabel"
y="631.23328" y="631.23328"
x="763.91071" x="763.91071"
style="font-style:normal;font-weight:normal;font-size:23.59383774px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#238995;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" style="font-style:normal;font-weight:normal;font-size:23.59383774px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve" xml:space="preserve"
inkscape:label="#text4257"><tspan inkscape:label="#text4257"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans'" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#1ca8d2;fill-opacity:1;"
y="631.23328" y="631.23328"
x="763.91071" x="763.91071"
id="tspan4259" id="tspan4259"
@ -869,7 +877,7 @@
id="EXTvolts" id="EXTvolts"
y="656.73779" y="656.73779"
x="613.10895" x="613.10895"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;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;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve" xml:space="preserve"
inkscape:label="#text4261"><tspan inkscape:label="#text4261"><tspan
y="656.73779" y="656.73779"
@ -878,7 +886,7 @@
sodipodi:role="line"> 0</tspan></text> sodipodi:role="line"> 0</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;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;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="612.42065" x="612.42065"
y="693.15247" y="693.15247"
id="EXThz" id="EXThz"
@ -910,14 +918,14 @@
style="fill:none;fill-rule:evenodd;stroke:#cdcecd;stroke-width:2.61324215;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;fill-rule:evenodd;stroke:#cdcecd;stroke-width:2.61324215;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:label="#path4275" /> inkscape:label="#path4275" />
<path <path
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;fill-rule:evenodd;stroke:#11f15e;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 504.31055 703.76758 L 504.49414 719.77148 L 504.31055 703.76758 z M 504.4082 720.39453 L 491.15625 732.60156 L 516.25391 732.60156 L 504.4082 720.39453 z " d="M 504.31055 703.76758 L 504.49414 719.77148 L 504.31055 703.76758 z M 504.4082 720.39453 L 491.15625 732.60156 L 516.25391 732.60156 L 504.4082 720.39453 z "
transform="scale(0.8,0.8)" transform="scale(0.8,0.8)"
id="APUgenconnector" id="APUgenconnector"
inkscape:label="#path4277" /> inkscape:label="#path4277" />
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;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;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="367.88181" x="367.88181"
y="667.5415" y="667.5415"
id="APUgenvolts" id="APUgenvolts"
@ -934,7 +942,7 @@
id="APUgenhz" id="APUgenhz"
y="704.05066" y="704.05066"
x="367.47034" x="367.47034"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;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;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve" xml:space="preserve"
inkscape:label="#text4286"><tspan inkscape:label="#text4286"><tspan
y="704.05066" y="704.05066"
@ -943,7 +951,7 @@
sodipodi:role="line"> 0</tspan></text> sodipodi:role="line"> 0</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;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;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="366.23596" x="366.23596"
y="626.93445" y="626.93445"
id="APUgenload" id="APUgenload"
@ -956,7 +964,7 @@
y="626.93445"> 0</tspan></text> y="626.93445"> 0</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#238995;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;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="429.18851" x="429.18851"
y="708.28644" y="708.28644"
id="apuv" id="apuv"
@ -969,7 +977,7 @@
y="708.28644">V</tspan></text> y="708.28644">V</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:23.59383774px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#238995;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" style="font-style:normal;font-weight:normal;font-size:23.59383774px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="496.25299" x="496.25299"
y="641.04858" y="641.04858"
id="APUhzlabel" id="APUhzlabel"
@ -980,13 +988,13 @@
id="tspan4300" id="tspan4300"
x="496.25299" x="496.25299"
y="641.04858" y="641.04858"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans'">HZ</tspan></text> style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#1ca8d2;fill-opacity:1;">HZ</tspan></text>
<text <text
sodipodi:linespacing="125%" sodipodi:linespacing="125%"
id="apupercent" id="apupercent"
y="659.0863" y="659.0863"
x="428.71634" x="428.71634"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#238995;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;font-size:32px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve" xml:space="preserve"
inkscape:label="#text4302"><tspan inkscape:label="#text4302"><tspan
y="659.0863" y="659.0863"
@ -1012,7 +1020,7 @@
id="tspan4312" id="tspan4312"
sodipodi:role="line">OFF</tspan></text> sodipodi:role="line">OFF</tspan></text>
<path <path
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.39211607;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;fill-rule:evenodd;stroke:#11f15e;stroke-width:2.39211607;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 855.93496,485.82666 0.0192,-61.92684" d="m 855.93496,485.82666 0.0192,-61.92684"
id="AC2toTR2connector" id="AC2toTR2connector"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -1026,14 +1034,14 @@
sodipodi:nodetypes="ccccc" sodipodi:nodetypes="ccccc"
inkscape:label="#path4268" /> inkscape:label="#path4268" />
<path <path
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;fill-rule:evenodd;stroke:#11f15e;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 856.0206,295.32102 -0.006,-39.56334" d="m 856.0206,295.32102 -0.006,-39.56334"
id="TR2toDC2connector" id="TR2toDC2connector"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" sodipodi:nodetypes="cc"
inkscape:label="#path4270" /> inkscape:label="#path4270" />
<path <path
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;fill-rule:evenodd;stroke:#11f15e;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 170.00899,486.11142 -0.0217,-61.12632" d="m 170.00899,486.11142 -0.0217,-61.12632"
id="AC1toTR1connector" id="AC1toTR1connector"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -1051,10 +1059,10 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="TR1toDC1connector" id="TR1toDC1connector"
d="m 168.82467,296.58193 -0.007,-40.32122" d="m 168.82467,296.58193 -0.007,-40.32122"
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;fill-rule:evenodd;stroke:#11f15e;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:label="#path4273" /> inkscape:label="#path4273" />
<path <path
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" style="fill:none;fill-rule:evenodd;stroke:#11f15e;stroke-width:2.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="m 454.16662,506.9333 -0.001,-40.03682" d="m 454.16662,506.9333 -0.001,-40.03682"
id="ACESStoESSTRconnector" id="ACESStoESSTRconnector"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -1074,28 +1082,22 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" sodipodi:nodetypes="ccccc"
inkscape:label="#path4280" /> inkscape:label="#path4280" />
<path
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 561.31641 384.36719 L 561.30273 405.57031 L 561.31641 384.36719 z M 561.38672 405.50391 L 548.32812 420.26367 L 575.83594 420.28516 L 561.38672 405.50391 z "
transform="scale(0.8,0.8)"
id="ESSTRtoDCESSconnector"
inkscape:label="#path4282" />
<path <path
id="EMERGENtoESSTRarrow" id="EMERGENtoESSTRarrow"
d="m 529.60494,403.87758 36.52496,0.19209 z m 36.47156,0.12554 12.21462,10.41472 -0.0349,-21.7775 -12.18023,11.36278 z" d="m 529.60494,403.87758 36.52496,0.19209 z m 36.47156,0.12554 12.21462,10.41472 -0.0349,-21.7775 -12.18023,11.36278 z"
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;fill-rule:evenodd;stroke:#11f15e;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc" sodipodi:nodetypes="cccccccc"
inkscape:label="#path4288" /> inkscape:label="#path4288" />
<path <path
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;fill-rule:evenodd;stroke:#11f15e;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 591.92574,468.49505 -0.027,26.1609" d="m 591.92574,468.49505 -0.027,26.1609"
id="EMERGENtoACESSarrow" id="EMERGENtoACESSarrow"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" sodipodi:nodetypes="cc"
inkscape:label="#path4279" /> inkscape:label="#path4279" />
<path <path
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;fill-rule:evenodd;stroke:#11f15e;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 591.98213,495.81109 -10.04398,-0.0285 9.97968,9.52801 10.51368,-9.50339 z" d="m 591.98213,495.81109 -10.04398,-0.0285 9.97968,9.52801 10.51368,-9.50339 z"
id="EMERGENtoACESSarrowhead" id="EMERGENtoACESSarrowhead"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -1115,7 +1117,7 @@
id="DC1text" id="DC1text"
y="230.10652" y="230.10652"
x="132.74469" x="132.74469"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30.18091011px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;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;font-size:30.18091011px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve" xml:space="preserve"
inkscape:label="#text4285"><tspan inkscape:label="#text4285"><tspan
y="230.10652" y="230.10652"
@ -1132,7 +1134,7 @@
inkscape:label="#rect4289" /> inkscape:label="#rect4289" />
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30.18091011px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;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;font-size:30.18091011px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="871.67334" x="871.67334"
y="229.62285" y="229.62285"
id="DC2text" id="DC2text"
@ -1161,7 +1163,7 @@
id="DCESStext" id="DCESStext"
y="279.91489" y="279.91489"
x="485.52222" x="485.52222"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30.18091011px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;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;font-size:30.18091011px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve" xml:space="preserve"
inkscape:label="#text4303"><tspan inkscape:label="#text4303"><tspan
y="279.91489" y="279.91489"
@ -1183,7 +1185,7 @@
sodipodi:role="line">SHED</tspan></text> sodipodi:role="line">SHED</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#238995;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;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="197.79475" x="197.79475"
y="375.53671" y="375.53671"
id="TR1v" id="TR1v"
@ -1200,7 +1202,7 @@
id="ESSTRv" id="ESSTRv"
y="418.23654" y="418.23654"
x="458.37582" x="458.37582"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#238995;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;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve"><tspan xml:space="preserve"><tspan
y="418.23654" y="418.23654"
x="458.37582" x="458.37582"
@ -1208,7 +1210,7 @@
sodipodi:role="line">V</tspan></text> sodipodi:role="line">V</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#238995;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;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="708.81757" x="708.81757"
y="422.40237" y="422.40237"
id="EMERGENv" id="EMERGENv"
@ -1225,7 +1227,7 @@
id="TR2v" id="TR2v"
y="374.49527" y="374.49527"
x="874.08881" x="874.08881"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#238995;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;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve" xml:space="preserve"
inkscape:label="#text4328"><tspan inkscape:label="#text4328"><tspan
y="374.49527" y="374.49527"
@ -1234,7 +1236,7 @@
sodipodi:role="line">V</tspan></text> sodipodi:role="line">V</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#238995;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;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="875.10272" x="875.10272"
y="417.1951" y="417.1951"
id="TR2a" id="TR2a"
@ -1251,7 +1253,7 @@
id="ESSTRa" id="ESSTRa"
y="460.9364" y="460.9364"
x="458.37579" x="458.37579"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#238995;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;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve" xml:space="preserve"
inkscape:label="#text4336"><tspan inkscape:label="#text4336"><tspan
y="460.9364" y="460.9364"
@ -1260,7 +1262,7 @@
sodipodi:role="line">A</tspan></text> sodipodi:role="line">A</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#238995;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;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="195.76685" x="195.76685"
y="417.19513" y="417.19513"
id="TR1a" id="TR1a"
@ -1273,7 +1275,7 @@
y="417.19513">A</tspan></text> y="417.19513">A</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:23.59383774px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#238995;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" style="font-style:normal;font-weight:normal;font-size:23.59383774px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="823.34528" x="823.34528"
y="395.82135" y="395.82135"
id="EMERGENhzlabel" id="EMERGENhzlabel"
@ -1284,14 +1286,14 @@
id="tspan4346" id="tspan4346"
x="823.34528" x="823.34528"
y="395.82135" y="395.82135"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans'">HZ</tspan></text> style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#1ca8d2;fill-opacity:1;">HZ</tspan></text>
<text <text
transform="scale(0.95153898,1.0509291)" transform="scale(0.95153898,1.0509291)"
sodipodi:linespacing="125%" sodipodi:linespacing="125%"
id="TR1volts" id="TR1volts"
y="357.78845" y="357.78845"
x="199.05309" x="199.05309"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11ba50;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;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve" xml:space="preserve"
inkscape:label="#text4348"><tspan inkscape:label="#text4348"><tspan
y="357.78845" y="357.78845"
@ -1300,7 +1302,7 @@
sodipodi:role="line">000</tspan></text> sodipodi:role="line">000</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11ba50;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;font-size:43.94145203px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="198.64162" x="198.64162"
y="394.29761" y="394.29761"
id="TR1amps" id="TR1amps"
@ -1361,7 +1363,7 @@
inkscape:label="#rect4335" /> inkscape:label="#rect4335" />
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30.18091011px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;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;font-size:30.18091011px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11f15e;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="478.60538" x="478.60538"
y="151.76433" y="151.76433"
id="DCbattext" id="DCbattext"
@ -1373,21 +1375,21 @@
x="478.60538" x="478.60538"
y="151.76433">DC BAT</tspan></text> y="151.76433">DC BAT</tspan></text>
<path <path
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;fill-rule:evenodd;stroke:#11f15e;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 441.23793,263.38168 0.0979,-90.18678" d="m 441.23793,263.38168 0.0979,-90.18678"
id="DCESStoDCBATconnector" id="DCESStoDCBATconnector"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" sodipodi:nodetypes="cc"
inkscape:label="#path4342" /> inkscape:label="#path4342" />
<path <path
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;fill-rule:evenodd;stroke:#11f15e;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 440.22864,224.12434 -194.95927,0.003" d="m 440.22864,224.12434 -194.95927,0.003"
id="DC1toDCESSconnector" id="DC1toDCESSconnector"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" sodipodi:nodetypes="cc"
inkscape:label="#path4344" /> inkscape:label="#path4344" />
<path <path
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;fill-rule:evenodd;stroke:#11f15e;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 574.01914,173.19989 -2e-5,50.12761 206.91054,-0.008" d="m 574.01914,173.19989 -2e-5,50.12761 206.91054,-0.008"
id="DC2toDCBATconnector" id="DC2toDCBATconnector"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -1406,7 +1408,7 @@
id="BAT1v" id="BAT1v"
y="151.78081" y="151.78081"
x="354.38113" x="354.38113"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#238995;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;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve" xml:space="preserve"
inkscape:label="#text4350"><tspan inkscape:label="#text4350"><tspan
y="151.78081" y="151.78081"
@ -1419,7 +1421,7 @@
id="BAT1a" id="BAT1a"
y="194.1468" y="194.1468"
x="352.69763" x="352.69763"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#238995;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;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve" xml:space="preserve"
inkscape:label="#text4354"><tspan inkscape:label="#text4354"><tspan
y="194.1468" y="194.1468"
@ -1441,7 +1443,7 @@
inkscape:label="#path4374" /> inkscape:label="#path4374" />
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#238995;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;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="718.73053" x="718.73053"
y="151.78081" y="151.78081"
id="BAT2v" id="BAT2v"
@ -1454,7 +1456,7 @@
y="151.78081">V</tspan></text> y="151.78081">V</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#238995;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;font-size:25.87124252px;line-height:125%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#1ca8d2;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="717.047" x="717.047"
y="194.1468" y="194.1468"
id="BAT2a" id="BAT2a"
@ -1542,10 +1544,17 @@
x="154.46318" x="154.46318"
y="783.72394">1</tspan></text> y="783.72394">1</tspan></text>
<path <path
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;fill-rule:evenodd;stroke:#11f15e;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 574.0179,224.48646 -0.007,38.87795" d="m 574.0179,224.48646 -0.007,38.87795"
id="DCESSconnector" id="DCESSconnector"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
inkscape:label="#path4362" inkscape:label="#path4362"
sodipodi:nodetypes="cc" /> sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-rule:evenodd;stroke:#cdcecd;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 438.574,336.21764 10.53688,-11.79697 11.55374,11.78626 z"
id="ESSTRtoDCESSarrow"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc"
inkscape:label="#path4363" />
</svg> </svg>

Before

Width:  |  Height:  |  Size: 98 KiB

After

Width:  |  Height:  |  Size: 99 KiB

View file

@ -117,6 +117,8 @@ var elec_init = func {
setprop("/systems/electrical/idg2-fault", 0); setprop("/systems/electrical/idg2-fault", 0);
setprop("/controls/electrical/xtie/xtieL", 0); setprop("/controls/electrical/xtie/xtieL", 0);
setprop("/controls/electrical/xtie/xtieR", 0); setprop("/controls/electrical/xtie/xtieR", 0);
setprop("/systems/electrical/bat1direction", 0); # - 1 = charge, 0 = disconnected, 1 = discharge
setprop("/systems/electrical/bat2direction", 0); # - 1 = charge, 0 = disconnected, 1 = discharge
# Below are standard FG Electrical stuff to keep things working when the plane is powered # Below are standard FG Electrical stuff to keep things working when the plane is powered
setprop("/systems/electrical/outputs/adf", 0); setprop("/systems/electrical/outputs/adf", 0);
setprop("/systems/electrical/outputs/audio-panel", 0); setprop("/systems/electrical/outputs/audio-panel", 0);
@ -439,29 +441,37 @@ var master_elec = func {
if (battery1_volts < 26.5 and (dc1 > 25 or dc2 > 25) and battery1_sw and !batt1_fail) { if (battery1_volts < 26.5 and (dc1 > 25 or dc2 > 25) and battery1_sw and !batt1_fail) {
decharge1.stop(); decharge1.stop();
charge1.start(); charge1.start();
} else if (battery1_volts == 27.9 and (dc1 > 25 or dc2 > 25) and battery1_sw and !batt1_fail) { setprop("/systems/electrical/bat1direction", -1);
} else if (battery1_volts < 27.9 and (dc1 > 25 or dc2 > 25) and battery1_sw and !batt1_fail) {
charge1.stop(); charge1.stop();
decharge1.stop(); decharge1.stop();
setprop("/systems/electrical/bat1direction", 2); # this is when it is connected, but is not charging or discharging
} else if (battery1_sw and !batt1_fail) { } else if (battery1_sw and !batt1_fail) {
charge1.stop(); charge1.stop();
decharge1.start(); decharge1.start();
setprop("/systems/electrical/bat1direction", 1);
} else { } else {
decharge1.stop(); decharge1.stop();
charge1.stop(); charge1.stop();
setprop("/systems/electrical/bat1direction", 0);
} }
if (battery2_volts < 26.5 and (dc1 > 25 or dc2 > 25) and battery2_sw and !batt2_fail) { if (battery2_volts < 26.5 and (dc1 > 25 or dc2 > 25) and battery2_sw and !batt2_fail) {
decharge2.stop(); decharge2.stop();
charge2.start(); charge2.start();
setprop("/systems/electrical/bat1direction", 0);
} else if (battery2_volts == 27.9 and (dc1 > 25 or dc2 > 25) and battery2_sw and !batt2_fail) { } else if (battery2_volts == 27.9 and (dc1 > 25 or dc2 > 25) and battery2_sw and !batt2_fail) {
charge2.stop(); charge2.stop();
decharge2.stop(); decharge2.stop();
setprop("/systems/electrical/bat2direction", 2); # this is when it is connected, but is not charging or discharging
} else if (battery2_sw and !batt2_fail) { } else if (battery2_sw and !batt2_fail) {
charge2.stop(); charge2.stop();
decharge2.start(); decharge2.start();
setprop("/systems/electrical/bat2direction", 1);
} else { } else {
decharge2.stop(); decharge2.stop();
charge2.stop(); charge2.stop();
setprop("/systems/electrical/bat2direction", 0);
} }
if (getprop("/systems/electrical/bus/ac-ess") < 110) { if (getprop("/systems/electrical/bus/ac-ess") < 110) {

View file

@ -199,5 +199,37 @@
</input> </input>
<output>/ECAM/Lower/elevator-trim-deg</output> <output>/ECAM/Lower/elevator-trim-deg</output>
</filter> </filter>
<filter>
<name>Battery 1 Contact Rotation</name>
<type>gain</type>
<gain>1</gain>
<input>
<expression>
<table>
<property>/systems/electrical/battery1-contact</property>
<entry><ind> -1</ind><dep> 0</dep></entry>
<entry><ind> 1</ind><dep>180</dep></entry>
</table>
</expression>
</input>
<output>/ECAM/Lower/bat1-contactrotation</output>
</filter>
<filter>
<name>Battery 2 Contact Rotation</name>
<type>gain</type>
<gain>1</gain>
<input>
<expression>
<table>
<property>/systems/electrical/battery2-contact</property>
<entry><ind> -1</ind><dep> 0</dep></entry>
<entry><ind> 1</ind><dep>180</dep></entry>
</table>
</expression>
</input>
<output>/ECAM/Lower/bat2-contactrotation</output>
</filter>
</PropertyList> </PropertyList>