2660 lines
92 KiB
Plaintext
2660 lines
92 KiB
Plaintext
{
|
|
"custom": {
|
|
"batBkr1Open": false,
|
|
"batBkr2Open": false,
|
|
"batBkr3Open": false,
|
|
"batCharging": false,
|
|
"batDischarging": false,
|
|
"bpBreakerClosed": false,
|
|
"colorHandler": {
|
|
"batBkr": "var(--elec-off)",
|
|
"batLine": "var(--elec-off)",
|
|
"bpBkr": "var(--elec-off)",
|
|
"bpLine": "var(--elec-off)",
|
|
"in": "var(--elec-off)",
|
|
"inBkr": "var(--elec-off)",
|
|
"inLine": "var(--elec-off)",
|
|
"lines": "var(--olGray)",
|
|
"out": "var(--elec-off)",
|
|
"outBkr": "var(--elec-off)",
|
|
"outLine": "var(--elec-off)"
|
|
},
|
|
"inBreakerClosed": false,
|
|
"outBreakerClosed": false,
|
|
"outPower": 0
|
|
},
|
|
"params": {
|
|
"inPower": 0,
|
|
"objectName": "UPS_HS",
|
|
"outPower": 0,
|
|
"tagPath": "[Ignition_Common_IO_Gtwy]ER1151/SATB1_HS1_UPS"
|
|
},
|
|
"propConfig": {
|
|
"custom.batBkr1Open": {
|
|
"binding": {
|
|
"config": {
|
|
"fallbackDelay": 2.5,
|
|
"mode": "indirect",
|
|
"references": {
|
|
"tagPath": "{view.params.tagPath}"
|
|
},
|
|
"tagPath": "{tagPath}/Battery 1 Breaker"
|
|
},
|
|
"enabled": false,
|
|
"type": "tag"
|
|
},
|
|
"persistent": true
|
|
},
|
|
"custom.batBkr2Open": {
|
|
"binding": {
|
|
"config": {
|
|
"fallbackDelay": 2.5,
|
|
"mode": "indirect",
|
|
"references": {
|
|
"tagPath": "{view.params.tagPath}"
|
|
},
|
|
"tagPath": "{tagPath}/Battery 2 Breaker"
|
|
},
|
|
"enabled": false,
|
|
"type": "tag"
|
|
},
|
|
"persistent": true
|
|
},
|
|
"custom.batBkr3Open": {
|
|
"binding": {
|
|
"config": {
|
|
"fallbackDelay": 2.5,
|
|
"mode": "indirect",
|
|
"references": {
|
|
"tagPath": "{view.params.tagPath}"
|
|
},
|
|
"tagPath": "{tagPath}/Battery 3 Breaker"
|
|
},
|
|
"enabled": false,
|
|
"type": "tag"
|
|
},
|
|
"persistent": true
|
|
},
|
|
"custom.batCharging": {
|
|
"binding": {
|
|
"config": {
|
|
"fallbackDelay": 2.5,
|
|
"mode": "indirect",
|
|
"references": {
|
|
"tagPath": "{view.params.tagPath}"
|
|
},
|
|
"tagPath": "{tagPath}/Battery Charging"
|
|
},
|
|
"enabled": false,
|
|
"type": "tag"
|
|
},
|
|
"persistent": true
|
|
},
|
|
"custom.batDischarging": {
|
|
"binding": {
|
|
"config": {
|
|
"fallbackDelay": 2.5,
|
|
"mode": "indirect",
|
|
"references": {
|
|
"tagPath": "{view.params.tagPath}"
|
|
},
|
|
"tagPath": "{tagPath}/Battery Discharging"
|
|
},
|
|
"enabled": false,
|
|
"type": "tag"
|
|
},
|
|
"persistent": true
|
|
},
|
|
"custom.bpBreakerClosed": {
|
|
"binding": {
|
|
"config": {
|
|
"fallbackDelay": 2.5,
|
|
"mode": "indirect",
|
|
"references": {
|
|
"tagPath": "{view.params.tagPath}"
|
|
},
|
|
"tagPath": "{tagPath}/Bypass Breaker Status"
|
|
},
|
|
"enabled": false,
|
|
"type": "tag"
|
|
},
|
|
"persistent": true
|
|
},
|
|
"custom.colorHandler": {
|
|
"persistent": true
|
|
},
|
|
"custom.colorHandler.batBkr": {
|
|
"binding": {
|
|
"config": {
|
|
"struct": {
|
|
"bChar": "{view.custom.batCharging}",
|
|
"bDis": "{view.custom.batDischarging}",
|
|
"br1": "{view.custom.batBkr1Open}",
|
|
"br2": "{view.custom.batBkr2Open}",
|
|
"br3": "{view.custom.batBkr3Open}",
|
|
"in": "{view.custom.inBreakerClosed}",
|
|
"inPow": "{view.params.inPower}"
|
|
},
|
|
"waitOnAll": true
|
|
},
|
|
"enabled": false,
|
|
"transforms": [
|
|
{
|
|
"code": "\tif not value[\u0027br1\u0027] and not value[\u0027br2\u0027] and not value[\u0027br3\u0027]:\n\t\tbatBr \u003d True\n\telse: \n\t\tbarBr \u003d False\n\tif value[\u0027bChar\u0027]:\n\t\tif batBr and value[\u0027in\u0027] and value[\u0027inPow\u0027]:\n\t\t\treturn \u0027var(--elec-on)\u0027\n\t\telse:\n\t\t\treturn \u0027var(--elec-off)\u0027\n\telif value[\u0027bDis\u0027]:\n\t\tif batBr:\n\t\t\treturn \u0027var(--elec-on)\u0027\n\t\telse:\n\t\t\treturn \u0027var(--elec-off)\u0027\n\telse:\n\t\treturn \u0027var(--elec-off)\u0027\n\treturn value",
|
|
"type": "script"
|
|
}
|
|
],
|
|
"type": "expr-struct"
|
|
}
|
|
},
|
|
"custom.colorHandler.batLine": {
|
|
"binding": {
|
|
"config": {
|
|
"struct": {
|
|
"bChar": "{view.custom.batCharging}",
|
|
"bDis": "{view.custom.batDischarging}",
|
|
"br1": "{view.custom.batBkr1Open}",
|
|
"br2": "{view.custom.batBkr2Open}",
|
|
"br3": "{view.custom.batBkr3Open}",
|
|
"in": "{view.custom.inBreakerClosed}",
|
|
"inPow": "{view.params.inPower}"
|
|
},
|
|
"waitOnAll": true
|
|
},
|
|
"enabled": false,
|
|
"transforms": [
|
|
{
|
|
"code": "\tif not value[\u0027br1\u0027] and not value[\u0027br2\u0027] and not value[\u0027br3\u0027]:\n\t\tbatBr \u003d True\n\telse: \n\t\tbarBr \u003d False\n\tif value[\u0027bChar\u0027]:\n\t\tif batBr and value[\u0027in\u0027] and value[\u0027inPow\u0027]:\n\t\t\treturn \u0027var(--elec-on)\u0027\n\t\telse:\n\t\t\treturn \u0027var(--elec-off)\u0027\n\telif value[\u0027bDis\u0027]:\n\t\tif batBr:\n\t\t\treturn \u0027var(--elec-on)\u0027\n\t\telse:\n\t\t\treturn \u0027var(--elec-off)\u0027\n\telse:\n\t\treturn \u0027var(--elec-off)\u0027\n\treturn value",
|
|
"type": "script"
|
|
}
|
|
],
|
|
"type": "expr-struct"
|
|
}
|
|
},
|
|
"custom.colorHandler.bpBkr": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.bpBreakerClosed"
|
|
},
|
|
"enabled": false,
|
|
"transforms": [
|
|
{
|
|
"fallback": "purple",
|
|
"inputType": "scalar",
|
|
"mappings": [
|
|
{
|
|
"input": true,
|
|
"output": "var(--elec-on)"
|
|
},
|
|
{
|
|
"input": false,
|
|
"output": "var(--elec-off)"
|
|
}
|
|
],
|
|
"outputType": "scalar",
|
|
"type": "map"
|
|
}
|
|
],
|
|
"type": "property"
|
|
}
|
|
},
|
|
"custom.colorHandler.bpLine": {
|
|
"binding": {
|
|
"config": {
|
|
"struct": {
|
|
"br": "{view.custom.bpBreakerClosed}",
|
|
"in": "{view.params.inPower}"
|
|
},
|
|
"waitOnAll": true
|
|
},
|
|
"enabled": false,
|
|
"transforms": [
|
|
{
|
|
"code": "\tif value[\u0027br\u0027] and (value[\u0027in\u0027] \u003d\u003d1):\n\t\treturn \u0027var(--elec-on)\u0027\n\telse:\n\t\treturn \u0027var(--elec-off)\u0027",
|
|
"type": "script"
|
|
}
|
|
],
|
|
"type": "expr-struct"
|
|
}
|
|
},
|
|
"custom.colorHandler.in": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.params.inPower"
|
|
},
|
|
"enabled": false,
|
|
"transforms": [
|
|
{
|
|
"fallback": "purple",
|
|
"inputType": "scalar",
|
|
"mappings": [
|
|
{
|
|
"input": 1,
|
|
"output": "var(--elec-on)"
|
|
},
|
|
{
|
|
"input": 0,
|
|
"output": "var(--elec-off)"
|
|
}
|
|
],
|
|
"outputType": "scalar",
|
|
"type": "map"
|
|
}
|
|
],
|
|
"type": "property"
|
|
}
|
|
},
|
|
"custom.colorHandler.inBkr": {
|
|
"binding": {
|
|
"config": {
|
|
"struct": {
|
|
"br": "{view.custom.inBreakerClosed}",
|
|
"in": "{view.params.inPower}"
|
|
},
|
|
"waitOnAll": true
|
|
},
|
|
"enabled": false,
|
|
"transforms": [
|
|
{
|
|
"code": "\tif value[\u0027br\u0027] and (value[\u0027in\u0027] \u003d\u003d1):\n\t\treturn \u0027var(--elec-on)\u0027\n\telse:\n\t\treturn \u0027var(--elec-off)\u0027",
|
|
"type": "script"
|
|
}
|
|
],
|
|
"type": "expr-struct"
|
|
}
|
|
},
|
|
"custom.colorHandler.inLine": {
|
|
"binding": {
|
|
"config": {
|
|
"struct": {
|
|
"br": "{view.custom.inBreakerClosed}",
|
|
"in": "{view.params.inPower}"
|
|
},
|
|
"waitOnAll": true
|
|
},
|
|
"enabled": false,
|
|
"transforms": [
|
|
{
|
|
"code": "\tif value[\u0027br\u0027] and (value[\u0027in\u0027] \u003d\u003d1):\n\t\treturn \u0027var(--elec-on)\u0027\n\telse:\n\t\treturn \u0027var(--elec-off)\u0027",
|
|
"type": "script"
|
|
}
|
|
],
|
|
"type": "expr-struct"
|
|
}
|
|
},
|
|
"custom.colorHandler.out": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.outPower"
|
|
},
|
|
"enabled": false,
|
|
"transforms": [
|
|
{
|
|
"fallback": "purple",
|
|
"inputType": "scalar",
|
|
"mappings": [
|
|
{
|
|
"input": 1,
|
|
"output": "var(--elec-on)"
|
|
},
|
|
{
|
|
"input": 0,
|
|
"output": "var(--elec-off)"
|
|
}
|
|
],
|
|
"outputType": "scalar",
|
|
"type": "map"
|
|
}
|
|
],
|
|
"type": "property"
|
|
}
|
|
},
|
|
"custom.colorHandler.outBkr": {
|
|
"binding": {
|
|
"config": {
|
|
"struct": {
|
|
"bDis": "{view.custom.batDischarging}",
|
|
"bbr1": "{view.custom.batBkr1Open}",
|
|
"bbr2": "{view.custom.batBkr2Open}",
|
|
"bbr3": "{view.custom.batBkr3Open}",
|
|
"br": "{view.custom.inBreakerClosed}",
|
|
"in": "{view.params.inPower}"
|
|
},
|
|
"waitOnAll": true
|
|
},
|
|
"enabled": false,
|
|
"transforms": [
|
|
{
|
|
"code": "\tif not value[\u0027bbr1\u0027] and not value[\u0027bbr2\u0027] and not value[\u0027bbr3\u0027]:\n\t\tbatBkrs \u003d True\n\telse:\n\t\tbatBkrs \u003d False\n\tif value[\u0027br\u0027] and (value[\u0027in\u0027] \u003d\u003d1):\n\t\treturn \u0027var(--elec-on)\u0027\n\telif value[\u0027bDis\u0027] and batBkrs:\n\t\treturn \u0027var(--elec-on)\u0027\n\telse:\n\t\treturn \u0027var(--elec-off)\u0027",
|
|
"type": "script"
|
|
}
|
|
],
|
|
"type": "expr-struct"
|
|
}
|
|
},
|
|
"custom.colorHandler.outLine": {
|
|
"binding": {
|
|
"config": {
|
|
"struct": {
|
|
"bDis": "{view.custom.batDischarging}",
|
|
"bbr1": "{view.custom.batBkr1Open}",
|
|
"bbr2": "{view.custom.batBkr2Open}",
|
|
"bbr3": "{view.custom.batBkr3Open}",
|
|
"br": "{view.custom.inBreakerClosed}",
|
|
"in": "{view.params.inPower}"
|
|
},
|
|
"waitOnAll": true
|
|
},
|
|
"enabled": false,
|
|
"transforms": [
|
|
{
|
|
"code": "\tif not value[\u0027bbr1\u0027] and not value[\u0027bbr2\u0027] and not value[\u0027bbr3\u0027]:\n\t\tbatBkrs \u003d True\n\telse:\n\t\tbatBkrs \u003d False\n\tif value[\u0027br\u0027] and (value[\u0027in\u0027] \u003d\u003d 1):\n\t\treturn \u0027var(--elec-on)\u0027\n\telif value[\u0027bDis\u0027] and batBkrs:\n\t\treturn \u0027var(--elec-on)\u0027\n\telse:\n\t\treturn \u0027var(--elec-off)\u0027",
|
|
"type": "script"
|
|
}
|
|
],
|
|
"type": "expr-struct"
|
|
}
|
|
},
|
|
"custom.inBreakerClosed": {
|
|
"binding": {
|
|
"config": {
|
|
"fallbackDelay": 2.5,
|
|
"mode": "indirect",
|
|
"references": {
|
|
"tagPath": "{view.params.tagPath}"
|
|
},
|
|
"tagPath": "{tagPath}/Input Breaker Status"
|
|
},
|
|
"enabled": false,
|
|
"transforms": [
|
|
{
|
|
"fallback": false,
|
|
"inputType": "scalar",
|
|
"mappings": [
|
|
{
|
|
"input": false,
|
|
"output": true
|
|
},
|
|
{
|
|
"input": true,
|
|
"output": false
|
|
}
|
|
],
|
|
"outputType": "scalar",
|
|
"type": "map"
|
|
}
|
|
],
|
|
"type": "tag"
|
|
},
|
|
"persistent": true
|
|
},
|
|
"custom.outBreakerClosed": {
|
|
"binding": {
|
|
"config": {
|
|
"fallbackDelay": 2.5,
|
|
"mode": "indirect",
|
|
"references": {
|
|
"tagPath": "{view.params.tagPath}"
|
|
},
|
|
"tagPath": "{tagPath}/Output Breaker Status"
|
|
},
|
|
"enabled": false,
|
|
"transforms": [
|
|
{
|
|
"fallback": null,
|
|
"inputType": "scalar",
|
|
"mappings": [
|
|
{
|
|
"input": false,
|
|
"output": true
|
|
},
|
|
{
|
|
"input": true,
|
|
"output": false
|
|
}
|
|
],
|
|
"outputType": "scalar",
|
|
"type": "map"
|
|
}
|
|
],
|
|
"type": "tag"
|
|
},
|
|
"persistent": true
|
|
},
|
|
"custom.outPower": {
|
|
"binding": {
|
|
"config": {
|
|
"struct": {
|
|
"bDis": "{view.custom.batDischarging}",
|
|
"bbr1": "{view.custom.batBkr1Open}",
|
|
"bbr2": "{view.custom.batBkr2Open}",
|
|
"bbr3": "{view.custom.batBkr3Open}",
|
|
"bbr4": "{view.custom.batBkr4Open}",
|
|
"bpBkr": "{view.custom.bpBreakerClosed}",
|
|
"br": "{view.custom.inBreakerClosed}",
|
|
"in": "{view.params.inPower}",
|
|
"outBkr": "{view.custom.outBreakerClosed}"
|
|
},
|
|
"waitOnAll": true
|
|
},
|
|
"enabled": false,
|
|
"transforms": [
|
|
{
|
|
"code": "\tif not value[\u0027bbr1\u0027] and not value[\u0027bbr2\u0027] and not value[\u0027bbr3\u0027] and not value[\u0027bbr4\u0027]:\n\t\tbatBkrs \u003d True\n\telse:\n\t\tbatBkrs \u003d False\n\tif value[\u0027br\u0027] and value[\u0027outBkr\u0027] and (value[\u0027in\u0027] \u003d\u003d1):\n\t\treturn 1\n\telif value[\u0027bDis\u0027] and batBkrs and value[\u0027outBkr\u0027]:\n\t\treturn 1\n\telif value[\u0027bpBkr\u0027] and (value[\u0027in\u0027] \u003d\u003d1):\n\t\treturn 1\n\telse:\n\t\treturn 0",
|
|
"type": "script"
|
|
}
|
|
],
|
|
"type": "expr-struct"
|
|
},
|
|
"persistent": true
|
|
},
|
|
"params.inPower": {
|
|
"paramDirection": "input",
|
|
"persistent": true
|
|
},
|
|
"params.objectName": {
|
|
"paramDirection": "input",
|
|
"persistent": true
|
|
},
|
|
"params.outPower": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.outPower"
|
|
},
|
|
"enabled": false,
|
|
"type": "property"
|
|
},
|
|
"paramDirection": "output",
|
|
"persistent": true
|
|
},
|
|
"params.tagPath": {
|
|
"paramDirection": "input",
|
|
"persistent": true
|
|
}
|
|
},
|
|
"props": {
|
|
"defaultSize": {
|
|
"height": 160,
|
|
"width": 180
|
|
}
|
|
},
|
|
"root": {
|
|
"children": [
|
|
{
|
|
"meta": {
|
|
"name": "Label"
|
|
},
|
|
"position": {
|
|
"height": 19,
|
|
"width": 104,
|
|
"x": 55,
|
|
"y": -6
|
|
},
|
|
"propConfig": {
|
|
"props.text": {
|
|
"binding": {
|
|
"config": {
|
|
"fallbackDelay": 2.5,
|
|
"mode": "indirect",
|
|
"references": {
|
|
"tagPath": "{view.params.tagPath}"
|
|
},
|
|
"tagPath": "{tagPath}/Meta/EqName"
|
|
},
|
|
"enabled": false,
|
|
"type": "tag"
|
|
}
|
|
}
|
|
},
|
|
"props": {
|
|
"text": "UPS",
|
|
"textStyle": {
|
|
"color": "var(--olGray)",
|
|
"fontSize": 15,
|
|
"fontWeight": "bold"
|
|
}
|
|
},
|
|
"type": "ia.display.label"
|
|
},
|
|
{
|
|
"meta": {
|
|
"name": "UPS_wCB"
|
|
},
|
|
"position": {
|
|
"height": 142,
|
|
"width": 156
|
|
},
|
|
"propConfig": {
|
|
"props.elements[0].elements[0].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.inLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[0].elements[1].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.inLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[0].elements[2].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.inLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[0].elements[3].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.inLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[0].elements[4].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.inLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[0].elements[5].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.inLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[0].elements[6].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.inLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[0].elements[7].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.inLine"
|
|
},
|
|
"enabled": false,
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[0].elements[8].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.inLine"
|
|
},
|
|
"enabled": false,
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[1].elements[0].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.outLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[1].elements[1].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.outLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[1].elements[2].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.outLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[1].elements[3].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.outLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[1].elements[4].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.outLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[1].elements[5].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.outLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[1].elements[6].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.outLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[1].elements[7].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.outLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[1].elements[8].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.outLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[2].elements[1].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.lines"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[2].elements[2].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.lines"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[3].elements[0].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.batLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[3].elements[1].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.batLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[3].elements[2].elements[11].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.lines"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[3].elements[2].elements[2].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.batLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[3].elements[2].elements[3].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.batLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[3].elements[2].elements[4].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.batLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[3].elements[2].elements[5].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.batLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[3].elements[2].elements[6].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.batLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[3].elements[2].elements[7].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.batLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[3].elements[2].elements[9].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.lines"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[3].elements[3].elements[1].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.lines"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[3].elements[3].elements[2].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.batBkr"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[3].elements[3].elements[2].visibility": {
|
|
"binding": {
|
|
"config": {
|
|
"struct": {
|
|
"br1": "{view.custom.batBkr1Open}",
|
|
"br2": "{view.custom.batBkr2Open}",
|
|
"br3": "{view.custom.batBkr3Open}",
|
|
"br4": "{view.custom.batBkr4Open}"
|
|
},
|
|
"waitOnAll": true
|
|
},
|
|
"transforms": [
|
|
{
|
|
"code": "\tif not value[\u0027br1\u0027] and not value[\u0027br2\u0027] and not value[\u0027br3\u0027] and not value[\u0027br4\u0027]:\n\t\treturn \u0027visible\u0027\n\telse:\n\t\treturn \u0027hidden\u0027",
|
|
"type": "script"
|
|
}
|
|
],
|
|
"type": "expr-struct"
|
|
}
|
|
},
|
|
"props.elements[3].elements[3].elements[3].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.batBkr"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[3].elements[3].elements[4].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.batBkr"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[3].elements[3].elements[5].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.batBkr"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[3].elements[3].elements[6].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.batBkr"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[3].elements[3].elements[7].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.batBkr"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[3].elements[3].elements[7].visibility": {
|
|
"binding": {
|
|
"config": {
|
|
"struct": {
|
|
"br1": "{view.custom.batBkr1Open}",
|
|
"br2": "{view.custom.batBkr2Open}",
|
|
"br3": "{view.custom.batBkr3Open}",
|
|
"br4": "{view.custom.batBkr4Open}"
|
|
},
|
|
"waitOnAll": true
|
|
},
|
|
"transforms": [
|
|
{
|
|
"code": "\tif not value[\u0027br1\u0027] and not value[\u0027br2\u0027] and not value[\u0027br3\u0027] and not value[\u0027br4\u0027]:\n\t\treturn \u0027hidden\u0027\n\telse:\n\t\treturn \u0027visible\u0027",
|
|
"type": "script"
|
|
}
|
|
],
|
|
"type": "expr-struct"
|
|
}
|
|
},
|
|
"props.elements[3].elements[4].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.batLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[3].elements[6].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.batLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[4].elements[0].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.lines"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[4].elements[1].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.lines"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[4].elements[2].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.lines"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[4].elements[3].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.lines"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[4].elements[4].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.lines"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[5].elements[1].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.lines"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[5].elements[4].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.lines"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[0].elements[1].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.lines"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[0].elements[2].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.outBkr"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[0].elements[2].visibility": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.outBreakerClosed"
|
|
},
|
|
"transforms": [
|
|
{
|
|
"fallback": "hidden",
|
|
"inputType": "scalar",
|
|
"mappings": [
|
|
{
|
|
"input": true,
|
|
"output": "visible"
|
|
},
|
|
{
|
|
"input": false,
|
|
"output": "hidden"
|
|
}
|
|
],
|
|
"outputType": "scalar",
|
|
"type": "map"
|
|
}
|
|
],
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[0].elements[3].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.outBkr"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[0].elements[4].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.outBkr"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[0].elements[5].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.outBkr"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[0].elements[6].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.outBkr"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[0].elements[7].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.outBkr"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[0].elements[7].visibility": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.outBreakerClosed"
|
|
},
|
|
"enabled": false,
|
|
"transforms": [
|
|
{
|
|
"fallback": "hidden",
|
|
"inputType": "scalar",
|
|
"mappings": [
|
|
{
|
|
"input": true,
|
|
"output": "hidden"
|
|
},
|
|
{
|
|
"input": false,
|
|
"output": "visible"
|
|
}
|
|
],
|
|
"outputType": "scalar",
|
|
"type": "map"
|
|
}
|
|
],
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[1].elements[1].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.lines"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[1].elements[2].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.bpBkr"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[1].elements[2].visibility": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.bpBreakerClosed"
|
|
},
|
|
"transforms": [
|
|
{
|
|
"fallback": "hidden",
|
|
"inputType": "scalar",
|
|
"mappings": [
|
|
{
|
|
"input": true,
|
|
"output": "visible"
|
|
},
|
|
{
|
|
"input": false,
|
|
"output": "hidden"
|
|
}
|
|
],
|
|
"outputType": "scalar",
|
|
"type": "map"
|
|
}
|
|
],
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[1].elements[3].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.bpBkr"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[1].elements[4].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.bpBkr"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[1].elements[5].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.bpBkr"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[1].elements[6].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.bpBkr"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[1].elements[7].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.bpBkr"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[1].elements[7].visibility": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.bpBreakerClosed"
|
|
},
|
|
"transforms": [
|
|
{
|
|
"fallback": "hidden",
|
|
"inputType": "scalar",
|
|
"mappings": [
|
|
{
|
|
"input": true,
|
|
"output": "hidden"
|
|
},
|
|
{
|
|
"input": false,
|
|
"output": "visible"
|
|
}
|
|
],
|
|
"outputType": "scalar",
|
|
"type": "map"
|
|
}
|
|
],
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[2].elements[1].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.lines"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[2].elements[2].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.inBkr"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[2].elements[2].visibility": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.inBreakerClosed"
|
|
},
|
|
"transforms": [
|
|
{
|
|
"fallback": "hidden",
|
|
"inputType": "scalar",
|
|
"mappings": [
|
|
{
|
|
"input": true,
|
|
"output": "visible"
|
|
},
|
|
{
|
|
"input": false,
|
|
"output": "hidden"
|
|
}
|
|
],
|
|
"outputType": "scalar",
|
|
"type": "map"
|
|
}
|
|
],
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[2].elements[3].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.inBkr"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[2].elements[4].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.inBkr"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[2].elements[5].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.inBkr"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[2].elements[6].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.inBkr"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[2].elements[7].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.inBkr"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[2].elements[7].visibility": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.inBreakerClosed"
|
|
},
|
|
"transforms": [
|
|
{
|
|
"fallback": "hidden",
|
|
"inputType": "scalar",
|
|
"mappings": [
|
|
{
|
|
"input": true,
|
|
"output": "hidden"
|
|
},
|
|
{
|
|
"input": false,
|
|
"output": "visible"
|
|
}
|
|
],
|
|
"outputType": "scalar",
|
|
"type": "map"
|
|
}
|
|
],
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[3].elements[0].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.bpLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[3].elements[1].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.out"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[4].elements[0].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.bpLine"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[6].elements[4].elements[1].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.in"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[7].elements[0].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"expression": "case(\r\n\t{/root.custom.alarmSeverity},\r\n\t1, \"var(--coolpurple)\",\r\n\t2, \"var(--goldenyellow)\",\r\n\t3, \"var(--sunsetorange)\",\r\n\t4, \"var(--alarmred)\",\r\n\t\"transparent\"\r\n)\t"
|
|
},
|
|
"enabled": false,
|
|
"type": "expr"
|
|
}
|
|
},
|
|
"props.elements[7].elements[1].fill.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"expression": "case(\r\n\t{/root.custom.alarmSeverity},\r\n\t1, \"var(--coolpurple)\",\r\n\t2, \"var(--goldenyellow)\",\r\n\t3, \"var(--sunsetorange)\",\r\n\t4, \"var(--alarmred)\",\r\n\t\"transparent\"\r\n)\t"
|
|
},
|
|
"enabled": false,
|
|
"type": "expr"
|
|
}
|
|
},
|
|
"props.elements[7].elements[2].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.lines"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[7].elements[2].visibility": {
|
|
"binding": {
|
|
"config": {
|
|
"expression": "\r\nif({/root.custom.alarmSeverity}!\u003d3,\u0027hidden\u0027,\u0027visible\u0027)\r\n"
|
|
},
|
|
"enabled": false,
|
|
"type": "expr"
|
|
}
|
|
},
|
|
"props.elements[7].elements[3].visibility": {
|
|
"binding": {
|
|
"config": {
|
|
"expression": "\r\nif({/root.custom.alarmSeverity}!\u003d3,\u0027hidden\u0027,\u0027visible\u0027)\r\n"
|
|
},
|
|
"enabled": false,
|
|
"type": "expr"
|
|
}
|
|
},
|
|
"props.elements[7].elements[4].elements[0].stroke.paint": {
|
|
"binding": {
|
|
"config": {
|
|
"path": "view.custom.colorHandler.lines"
|
|
},
|
|
"type": "property"
|
|
}
|
|
},
|
|
"props.elements[7].elements[4].visibility": {
|
|
"binding": {
|
|
"config": {
|
|
"expression": "\r\nif({/root.custom.alarmSeverity}!\u003d2,\u0027hidden\u0027,\u0027visible\u0027)\r\n"
|
|
},
|
|
"enabled": false,
|
|
"type": "expr"
|
|
}
|
|
},
|
|
"props.elements[7].elements[5].visibility": {
|
|
"binding": {
|
|
"config": {
|
|
"expression": "\r\nif({/root.custom.alarmSeverity}!\u003d1,\u0027hidden\u0027,\u0027visible\u0027)\r\n"
|
|
},
|
|
"enabled": false,
|
|
"type": "expr"
|
|
}
|
|
},
|
|
"props.elements[7].elements[6].visibility": {
|
|
"binding": {
|
|
"config": {
|
|
"expression": "\r\nif({/root.custom.alarmSeverity}!\u003d4,\u0027hidden\u0027,\u0027visible\u0027)\r\n"
|
|
},
|
|
"enabled": false,
|
|
"type": "expr"
|
|
}
|
|
},
|
|
"props.elements[7].elements[7].visibility": {
|
|
"binding": {
|
|
"config": {
|
|
"expression": "\r\nif({/root.custom.alarmSeverity}!\u003d4,\u0027hidden\u0027,\u0027visible\u0027)\r\n"
|
|
},
|
|
"enabled": false,
|
|
"type": "expr"
|
|
}
|
|
}
|
|
},
|
|
"props": {
|
|
"elements": [
|
|
{
|
|
"elements": [
|
|
{
|
|
"d": "M57.329,31.922c-0.089,-0.506 -0.249,-0.865 -0.854,-0.874c-0.494,-0.007 -0.872,0.342 -0.872,0.874c-0.062,0.468 -0.282,0.808 -0.863,0.856c-0.498,-0.05 -0.784,-0.337 -0.862,-0.856",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"width": "0.38px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M48.779,29.871l9.999,10.308",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"linecap": "butt",
|
|
"width": "0.38px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M50.186,36.308l3,-0",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"linecap": "butt",
|
|
"width": "0.38px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M50.186,37.886l3,-0",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"linecap": "butt",
|
|
"width": "0.38px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M53.778,45l0,-4.821",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M53.778,29.871l0,-9.202",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"fill": {
|
|
"opacity": "0"
|
|
},
|
|
"height": "10.309",
|
|
"name": "rect",
|
|
"stroke": {
|
|
"width": "0.75px"
|
|
},
|
|
"type": "rect",
|
|
"width": "10",
|
|
"x": "48.779",
|
|
"y": "29.871"
|
|
},
|
|
{
|
|
"d": "M88.418,20.669l-17.025,0",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"linecap": "butt",
|
|
"linejoin": "round",
|
|
"miterlimit": "1.5",
|
|
"paint": "var(--elec-off)",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M71.393,20.669l-17.615,0",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"linecap": "butt",
|
|
"linejoin": "round",
|
|
"miterlimit": "1.5",
|
|
"paint": "var(--elec-off)",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
}
|
|
],
|
|
"id": "UPS-Input",
|
|
"name": "UPS-Input",
|
|
"type": "group"
|
|
},
|
|
{
|
|
"elements": [
|
|
{
|
|
"d": "M57.329,57.944c-0.089,-0.506 -0.249,-0.866 -0.854,-0.874c-0.494,-0.007 -0.872,0.342 -0.872,0.874c-0.062,0.467 -0.282,0.807 -0.863,0.856c-0.498,-0.05 -0.784,-0.338 -0.862,-0.856",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"width": "0.38px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M50.186,51.909l3,-0",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"linecap": "butt",
|
|
"width": "0.38px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M50.186,53.487l3,0",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"linecap": "butt",
|
|
"width": "0.38px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M48.779,60.076l9.999,-10.103",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"linecap": "butt",
|
|
"width": "0.38px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M53.778,45l0,4.973",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M53.778,69.277l0,-9.201",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"fill": {
|
|
"opacity": "0"
|
|
},
|
|
"height": "10.103",
|
|
"name": "rect",
|
|
"stroke": {
|
|
"width": "0.75px"
|
|
},
|
|
"type": "rect",
|
|
"width": "10",
|
|
"x": "48.779",
|
|
"y": "49.973"
|
|
},
|
|
{
|
|
"d": "M88.748,69.258l-17.355,0",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"linecap": "butt",
|
|
"linejoin": "round",
|
|
"miterlimit": "1.5",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M71.393,69.258l-17.615,0",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"linecap": "butt",
|
|
"linejoin": "round",
|
|
"miterlimit": "1.5",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
}
|
|
],
|
|
"id": "UPS-Output",
|
|
"name": "UPS-Output",
|
|
"type": "group"
|
|
},
|
|
{
|
|
"elements": [
|
|
{
|
|
"fill": {
|
|
"opacity": "0"
|
|
},
|
|
"height": "67.5",
|
|
"id": "External",
|
|
"name": "External",
|
|
"type": "rect",
|
|
"width": "82.5",
|
|
"x": "41.25",
|
|
"y": "11.25"
|
|
},
|
|
{
|
|
"d": "M41.25,15.268l0,-4.018l3.929,-0l-0,0.75l-3.179,-0l0,3.268l-0.75,-0Zm9.429,-4.018l-0,0.75l-2.358,-0l0,-0.75l2.358,-0Zm11,-0l-0,0.75l-7.858,-0l0,-0.75l7.858,-0Zm5.499,-0l0,0.75l-2.357,-0l0,-0.75l2.357,-0Zm11.001,-0l-0,0.75l-7.858,-0l0,-0.75l7.858,-0Zm5.5,-0l-0,0.75l-2.357,-0l-0,-0.75l2.357,-0Zm11,-0l-0,0.75l-7.858,-0l0,-0.75l7.858,-0Zm5.5,-0l-0,0.75l-2.358,-0l0,-0.75l2.358,-0Zm11,-0l-0,0.75l-7.858,-0l0,-0.75l7.858,-0Zm5.5,-0l-0,0.75l-2.358,-0l0,-0.75l2.358,-0Zm7.071,4.018l-0.75,-0l-0,-3.268l-3.179,-0l0,-0.75l3.929,-0l0,4.018Zm0,5.625l-0.75,-0l0,-2.411l0.75,0l0,2.411Zm0,11.25l-0.75,-0l0,-8.036l0.75,0l0,8.036Zm0,5.625l-0.75,-0l0,-2.411l0.75,0l0,2.411Zm0,11.25l-0.75,-0l0,-8.036l0.75,0l0,8.036Zm0,5.625l-0.75,-0l0,-2.411l0.75,0l0,2.411Zm0,11.25l-0.75,-0l0,-8.036l0.75,0l0,8.036Zm0,5.625l-0.75,-0l0,-2.411l0.75,0l0,2.411Zm-3.929,7.232l0,-0.75l3.179,0l0,-3.268l0.75,0l0,4.018l-3.929,-0Zm-5.5,-0l0,-0.75l2.358,-0l-0,0.75l-2.358,-0Zm-11,-0l0,-0.75l7.858,-0l-0,0.75l-7.858,-0Zm-5.499,-0l-0,-0.75l2.357,-0l-0,0.75l-2.357,-0Zm-11.001,-0l0,-0.75l7.858,-0l-0,0.75l-7.858,-0Zm-5.5,-0l0,-0.75l2.357,-0l0,0.75l-2.357,-0Zm-11,-0l0,-0.75l7.858,-0l-0,0.75l-7.858,-0Zm-5.5,-0l0,-0.75l2.358,-0l-0,0.75l-2.358,-0Zm-11,-0l0,-0.75l7.858,-0l-0,0.75l-7.858,-0Zm-5.5,-0l0,-0.75l2.358,-0l-0,0.75l-2.358,-0Zm-7.071,-4.018l0.75,0l0,3.268l3.179,-0l-0,0.75l-3.929,-0l0,-4.018Zm0,-5.625l0.75,0l0,2.411l-0.75,-0l0,-2.411Zm0,-11.25l0.75,0l0,8.036l-0.75,-0l0,-8.036Zm0,-5.625l0.75,0l0,2.411l-0.75,-0l0,-2.411Zm0,-11.25l0.75,0l0,8.036l-0.75,-0l0,-8.036Zm0,-5.625l0.75,0l0,2.411l-0.75,-0l0,-2.411Zm0,-11.25l0.75,0l0,8.036l-0.75,-0l0,-8.036Zm0,-5.625l0.75,0l0,2.411l-0.75,-0l0,-2.411Z",
|
|
"fill": {},
|
|
"name": "path",
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M82.125,11.25l0.75,0l0,4.018l-0.75,-0l0,-4.018Zm0,7.232l0.75,0l0,2.411l-0.75,-0l0,-2.411Zm0,5.625l0.75,0l0,8.036l-0.75,-0l0,-8.036Zm0,11.25l0.75,0l0,2.411l-0.75,-0l0,-2.411Zm0,5.625l0.75,0l0,8.036l-0.75,-0l0,-8.036Zm0,11.25l0.75,0l0,2.411l-0.75,-0l0,-2.411Zm0,5.625l0.75,0l0,8.036l-0.75,-0l0,-8.036Zm0,11.25l0.75,0l0,2.411l-0.75,-0l0,-2.411Zm0,5.625l0.75,0l0,4.018l-0.75,0l0,-4.018Z",
|
|
"fill": {},
|
|
"id": "Internal",
|
|
"name": "Internal",
|
|
"type": "path"
|
|
}
|
|
],
|
|
"id": "Box",
|
|
"name": "Box",
|
|
"type": "group"
|
|
},
|
|
{
|
|
"elements": [
|
|
{
|
|
"fill": {
|
|
"opacity": 0
|
|
},
|
|
"height": 25,
|
|
"name": "rect",
|
|
"stroke": null,
|
|
"type": "rect",
|
|
"width": 18.75,
|
|
"x": 5.625,
|
|
"y": 52.5
|
|
},
|
|
{
|
|
"d": "M5.625,56.295l0,-3.795l4.464,0l0,0.75l-3.714,0l0,3.045l-0.75,-0Zm10.714,-3.795l0,0.75l-2.678,-0l-0,-0.75l2.678,0Zm8.036,3.795l-0.75,-0c0,-0 0,-3.045 0,-3.045l-3.714,-0l-0,-0.75l4.464,0l0,3.795Zm0,5.312l-0.75,0l0,-2.277l0.75,0l0,2.277Zm0,10.625l-0.75,0l0,-7.589l0.75,-0l0,7.589Zm0,5.313l-0.75,-0l0,-2.277l0.75,-0l0,2.277Zm0,10.625l-0.75,-0l0,-7.59l0.75,0l0,7.59Zm0,5.312l-0.75,0l0,-2.277l0.75,0l0,2.277Zm0,10.625l-0.75,0l0,-7.589l0.75,-0l0,7.589Zm0,5.313l-0.75,-0l0,-2.277l0.75,-0l0,2.277Zm-4.464,6.83l-0,-0.75l3.714,-0l0,-3.045l0.75,0l0,3.795l-4.464,0Zm-6.25,0l-0,-0.75l2.678,0l0,0.75l-2.678,0Zm-8.036,-3.795l0.75,0c0,0 0,3.045 -0,3.045l3.714,0l0,0.75l-4.464,0l0,-3.795Zm0,-5.312l0.75,-0l0,2.277l-0.75,-0l0,-2.277Zm0,-10.625l0.75,-0l0,7.589l-0.75,0l0,-7.589Zm0,-5.313l0.75,0l0,2.277l-0.75,0l0,-2.277Zm0,-10.625l0.75,0l0,7.59l-0.75,-0l0,-7.59Zm0,-5.312l0.75,-0l0,2.277l-0.75,-0l0,-2.277Zm0,-10.625l0.75,-0l0,7.589l-0.75,0l0,-7.589Zm0,-5.313l0.75,0l0,2.277l-0.75,0l0,-2.277Z",
|
|
"fill": {},
|
|
"name": "path",
|
|
"type": "path"
|
|
},
|
|
{
|
|
"elements": [
|
|
{
|
|
"fill": {
|
|
"opacity": 0,
|
|
"paint": "transparent"
|
|
},
|
|
"height": 30,
|
|
"name": "rect",
|
|
"type": "rect",
|
|
"width": 18.75,
|
|
"x": 5.625,
|
|
"y": "86.25"
|
|
},
|
|
{
|
|
"d": "M5.625,93.393l0,-7.143l4.464,-0l0,0.75l-3.714,0l0,6.393l-0.75,-0Zm10.714,-7.143l0,0.75l-2.678,-0l-0,-0.75l2.678,-0Zm8.036,7.143l-0.75,-0c0,-0 0,-6.393 0,-6.393l-3.714,-0l-0,-0.75l4.464,-0l0,7.143Zm0,10l-0.75,-0l0,-4.286l0.75,0l0,4.286Zm-4.464,12.857l-0,-0.75l3.714,-0l0,-6.393l0.75,0l0,7.143l-4.464,0Zm-6.25,0l-0,-0.75l2.678,0l0,0.75l-2.678,0Zm-8.036,-7.143l0.75,0c0,0 0,6.393 -0,6.393l3.714,0l0,0.75l-4.464,0l0,-7.143Zm0,-10l0.75,0l0,4.286l-0.75,-0l0,-4.286Z",
|
|
"name": "path",
|
|
"type": "path",
|
|
"visibility": "hidden"
|
|
},
|
|
{
|
|
"d": "M10.105,92.833l9.79,-0",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"dasharray": "12,3,2.25,3,0,0",
|
|
"linecap": "butt",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M12.552,96.2l4.896,-0",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"dasharray": "7.5,3,2.25,3,0,0",
|
|
"linecap": "butt",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M10.105,99.567l9.79,-0",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"dasharray": "12,3,2.25,3,0,0",
|
|
"linecap": "butt",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M12.552,102.933l4.896,0",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"dasharray": "7.5,3,2.25,3,0,0",
|
|
"linecap": "butt",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M10.105,106.3l9.79,0",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"dasharray": "12,3,2.25,3,0,0",
|
|
"linecap": "butt",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M12.552,109.667l4.896,0",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"dasharray": "12,3,2.25,3,0,0",
|
|
"linecap": "butt",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"name": "group",
|
|
"transform": "matrix(4.16667,0,0,4.16667,49.0244,111.733)",
|
|
"type": "group"
|
|
},
|
|
{
|
|
"elements": [
|
|
{
|
|
"name": "tspan",
|
|
"text": "TT",
|
|
"type": "tspan",
|
|
"x": "43.934px 46.479px ",
|
|
"y": "111.733px 111.733px "
|
|
}
|
|
],
|
|
"fill": {},
|
|
"name": "text",
|
|
"style": {
|
|
"fontFamily": "\u0027ArialMT\u0027, \u0027Arial\u0027",
|
|
"fontSize": "4.167px"
|
|
},
|
|
"text": "Li-Ion BA",
|
|
"type": "text",
|
|
"x": "27.105px",
|
|
"y": "111.733px"
|
|
},
|
|
{
|
|
"name": "group",
|
|
"transform": "matrix(4.16667,0,0,4.16667,49.6205,115.535)",
|
|
"type": "group"
|
|
},
|
|
{
|
|
"elements": [
|
|
{
|
|
"name": "tspan",
|
|
"text": "V",
|
|
"type": "tspan",
|
|
"x": "46.841px ",
|
|
"y": "115.535px "
|
|
}
|
|
],
|
|
"fill": {},
|
|
"name": "text",
|
|
"style": {
|
|
"fontFamily": "\u0027ArialMT\u0027, \u0027Arial\u0027",
|
|
"fontSize": "4.167px"
|
|
},
|
|
"text": "5-min EOL",
|
|
"type": "text",
|
|
"x": "27.237px",
|
|
"y": "115.535px"
|
|
}
|
|
],
|
|
"id": "cell",
|
|
"name": "cell",
|
|
"type": "group"
|
|
},
|
|
{
|
|
"elements": [
|
|
{
|
|
"name": "group",
|
|
"transform": "matrix(4.16667,0,0,4.16667,35.3889,64.7948)",
|
|
"type": "group"
|
|
},
|
|
{
|
|
"fill": {},
|
|
"name": "text",
|
|
"style": {
|
|
"fontFamily": "\u0027ArialMT\u0027, \u0027Arial\u0027",
|
|
"fontSize": "4.167px"
|
|
},
|
|
"text": "600A",
|
|
"type": "text",
|
|
"x": "25.658px",
|
|
"y": "64.795px"
|
|
},
|
|
{
|
|
"d": "M16.125,58.953c1.261,1.2 1.896,2.695 1.87,4.5c0.009,2.094 -0.591,3.616 -1.87,4.5",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"id": "Closed",
|
|
"name": "Closed",
|
|
"stroke": {
|
|
"linejoin": "round",
|
|
"miterlimit": "1.5",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"cx": "15",
|
|
"cy": "58.953",
|
|
"fill": {},
|
|
"id": "T1",
|
|
"name": "T1",
|
|
"r": 1.5,
|
|
"type": "circle"
|
|
},
|
|
{
|
|
"d": "M15,57.828c0.621,0 1.125,0.504 1.125,1.125c0,0.621 -0.504,1.125 -1.125,1.125c-0.621,0 -1.125,-0.504 -1.125,-1.125c0,-0.621 0.504,-1.125 1.125,-1.125Zm0,0.75c-0.207,0 -0.375,0.168 -0.375,0.375c0,0.207 0.168,0.375 0.375,0.375c0.207,0 0.375,-0.168 0.375,-0.375c0,-0.207 -0.168,-0.375 -0.375,-0.375Z",
|
|
"fill": {},
|
|
"name": "path",
|
|
"type": "path"
|
|
},
|
|
{
|
|
"cx": "15",
|
|
"cy": "67.953",
|
|
"fill": {},
|
|
"id": "T2",
|
|
"name": "T2",
|
|
"r": 1.5,
|
|
"type": "circle"
|
|
},
|
|
{
|
|
"d": "M15,66.828c0.621,0 1.125,0.504 1.125,1.125c0,0.621 -0.504,1.125 -1.125,1.125c-0.621,0 -1.125,-0.504 -1.125,-1.125c0,-0.621 0.504,-1.125 1.125,-1.125Zm0,0.75c-0.207,0 -0.375,0.168 -0.375,0.375c0,0.207 0.168,0.375 0.375,0.375c0.207,0 0.375,-0.168 0.375,-0.375c0,-0.207 -0.168,-0.375 -0.375,-0.375Z",
|
|
"fill": {},
|
|
"name": "path",
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M19.785,58.953c1.262,1.2 1.897,2.695 1.871,4.5c0.008,2.094 -0.592,3.616 -1.871,4.5",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"id": "Open",
|
|
"name": "Open",
|
|
"stroke": {
|
|
"linejoin": "round",
|
|
"miterlimit": "1.5",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
}
|
|
],
|
|
"id": "CB",
|
|
"name": "CB",
|
|
"type": "group"
|
|
},
|
|
{
|
|
"d": "M15,68.679l0,24.371",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"linecap": "butt",
|
|
"linejoin": "round",
|
|
"miterlimit": "1.5",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"cx": "53.778",
|
|
"cy": "45",
|
|
"name": "circle",
|
|
"r": "1.125",
|
|
"type": "circle"
|
|
},
|
|
{
|
|
"d": "M15,58.23l0,-13.23l38.778,0",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"linecap": "butt",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
}
|
|
],
|
|
"id": "BATT",
|
|
"name": "BATT",
|
|
"type": "group"
|
|
},
|
|
{
|
|
"elements": [
|
|
{
|
|
"d": "M71.393,39.161l-0,-18.492",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"linecap": "butt",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M71.393,49.19l-0,20.068",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"linecap": "butt",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M72.437,42.327l4.24,-0c-0,-0 -2.192,0.108 -2.108,-0c0.084,-0.108 -2.132,3.54 -2.132,3.54l4.24,-0l-2.108,-3.54",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"width": "0.38px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"fill": {
|
|
"opacity": "0"
|
|
},
|
|
"height": "10.029",
|
|
"name": "rect",
|
|
"stroke": {
|
|
"width": "0.38px"
|
|
},
|
|
"type": "rect",
|
|
"width": "6.352",
|
|
"x": "68.217",
|
|
"y": "39.161"
|
|
},
|
|
{
|
|
"d": "M70.337,45.865l-4.24,-0c-0,-0 2.192,-0.109 2.108,-0c-0.084,0.108 2.132,-3.541 2.132,-3.541l-4.24,0l2.108,3.541",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"width": "0.38px"
|
|
},
|
|
"type": "path"
|
|
}
|
|
],
|
|
"id": "Diode",
|
|
"name": "Diode",
|
|
"type": "group"
|
|
},
|
|
{
|
|
"elements": [
|
|
{
|
|
"name": "group",
|
|
"transform": "matrix(4.16667,0,0,4.16667,59.0112,3.03345)",
|
|
"type": "group"
|
|
},
|
|
{
|
|
"fill": {},
|
|
"name": "text",
|
|
"style": {
|
|
"color": "var(--olGray)",
|
|
"fontFamily": "\u0027Arial-BoldMT\u0027, \u0027Arial\u0027",
|
|
"fontSize": "4.167px",
|
|
"fontWeight": "700"
|
|
},
|
|
"text": "UPS-HS1",
|
|
"type": "text",
|
|
"visibility": "hidden",
|
|
"x": "40.951px",
|
|
"y": "3.033px"
|
|
},
|
|
{
|
|
"name": "group",
|
|
"transform": "matrix(4.16667,0,0,4.16667,71.5723,6.78345)",
|
|
"type": "group"
|
|
},
|
|
{
|
|
"name": "group",
|
|
"transform": "matrix(4.16667,0,0,4.16667,85.2808,10.5334)",
|
|
"type": "group"
|
|
},
|
|
{
|
|
"elements": [
|
|
{
|
|
"name": "tspan",
|
|
"text": ", ",
|
|
"type": "tspan",
|
|
"x": "50.546px 51.703px ",
|
|
"y": "10.533px 10.533px "
|
|
},
|
|
{
|
|
"name": "tspan",
|
|
"text": ", ",
|
|
"type": "tspan",
|
|
"x": "69.302px 70.459px ",
|
|
"y": "10.533px 10.533px "
|
|
}
|
|
],
|
|
"fill": {},
|
|
"name": "text",
|
|
"style": {
|
|
"color": "var(--olGray)",
|
|
"fontFamily": "\u0027ArialMT\u0027, \u0027Arial\u0027",
|
|
"fontSize": "4.167px"
|
|
},
|
|
"text": "480V3PH, 3W65kAIC",
|
|
"type": "text",
|
|
"x": "41.197px",
|
|
"y": "10.533px"
|
|
}
|
|
],
|
|
"id": "TagID-Plate",
|
|
"name": "TagID-Plate",
|
|
"type": "group"
|
|
},
|
|
{
|
|
"elements": [
|
|
{
|
|
"elements": [
|
|
{
|
|
"name": "group",
|
|
"transform": "matrix(4.16667,0,0,4.16667,97.0707,74.6202)",
|
|
"type": "group"
|
|
},
|
|
{
|
|
"fill": {},
|
|
"name": "text",
|
|
"style": {
|
|
"fontFamily": "\u0027ArialMT\u0027, \u0027Arial\u0027",
|
|
"fontSize": "4.167px"
|
|
},
|
|
"text": "NC",
|
|
"type": "text",
|
|
"x": "91.053px",
|
|
"y": "74.62px"
|
|
},
|
|
{
|
|
"d": "M89.543,68.133c1.2,-1.261 2.694,-1.896 4.5,-1.87c2.094,-0.009 3.615,0.592 4.5,1.87",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"id": "Closed1",
|
|
"name": "Closed1",
|
|
"stroke": {
|
|
"linejoin": "round",
|
|
"miterlimit": "1.5",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M88.418,69.258c-0,-0.621 0.504,-1.125 1.125,-1.125c0.621,0 1.125,0.504 1.125,1.125c-0,0.621 -0.504,1.125 -1.125,1.125c-0.621,0 -1.125,-0.504 -1.125,-1.125Z",
|
|
"fill": {},
|
|
"id": "T11",
|
|
"name": "T11",
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M88.418,69.258c-0,-0.621 0.504,-1.125 1.125,-1.125c0.621,0 1.125,0.504 1.125,1.125c-0,0.621 -0.504,1.125 -1.125,1.125c-0.621,0 -1.125,-0.504 -1.125,-1.125Zm0.75,0c-0,0.207 0.168,0.375 0.375,0.375c0.207,0 0.375,-0.168 0.375,-0.375c-0,-0.207 -0.168,-0.375 -0.375,-0.375c-0.207,0 -0.375,0.168 -0.375,0.375Z",
|
|
"fill": {},
|
|
"name": "path",
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M97.418,69.258c-0,-0.621 0.504,-1.125 1.125,-1.125c0.621,0 1.125,0.504 1.125,1.125c-0,0.621 -0.504,1.125 -1.125,1.125c-0.621,0 -1.125,-0.504 -1.125,-1.125Z",
|
|
"fill": {},
|
|
"id": "T21",
|
|
"name": "T21",
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M97.418,69.258c-0,-0.621 0.504,-1.125 1.125,-1.125c0.621,0 1.125,0.504 1.125,1.125c-0,0.621 -0.504,1.125 -1.125,1.125c-0.621,0 -1.125,-0.504 -1.125,-1.125Zm0.75,0c-0,0.207 0.168,0.375 0.375,0.375c0.207,0 0.375,-0.168 0.375,-0.375c-0,-0.207 -0.168,-0.375 -0.375,-0.375c-0.207,0 -0.375,0.168 -0.375,0.375Z",
|
|
"fill": {},
|
|
"name": "path",
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M89.543,64.473c1.2,-1.262 2.694,-1.897 4.5,-1.871c2.094,-0.008 3.615,0.592 4.5,1.871",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"id": "Open1",
|
|
"name": "Open1",
|
|
"stroke": {
|
|
"linejoin": "round",
|
|
"miterlimit": "1.5",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path",
|
|
"visibility": "visible"
|
|
}
|
|
],
|
|
"id": "CB03",
|
|
"name": "CB03",
|
|
"type": "group"
|
|
},
|
|
{
|
|
"elements": [
|
|
{
|
|
"name": "group",
|
|
"transform": "matrix(4.16667,0,0,4.16667,120.281,46.4923)",
|
|
"type": "group"
|
|
},
|
|
{
|
|
"fill": {},
|
|
"name": "text",
|
|
"style": {
|
|
"fontFamily": "\u0027ArialMT\u0027, \u0027Arial\u0027",
|
|
"fontSize": "4.167px"
|
|
},
|
|
"text": "NO",
|
|
"type": "text",
|
|
"x": "114.031px",
|
|
"y": "46.492px"
|
|
},
|
|
{
|
|
"d": "M106.392,40.803c1.262,1.159 1.897,2.604 1.871,4.348c0.008,2.024 -0.592,3.495 -1.871,4.349",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"id": "Closed2",
|
|
"name": "Closed2",
|
|
"stroke": {
|
|
"linejoin": "round",
|
|
"miterlimit": "1.5",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"cx": "105",
|
|
"cy": "40.803",
|
|
"fill": {},
|
|
"id": "T12",
|
|
"name": "T12",
|
|
"r": "1.125",
|
|
"type": "circle"
|
|
},
|
|
{
|
|
"d": "M105,39.678c0.621,-0 1.125,0.504 1.125,1.125c0,0.62 -0.504,1.125 -1.125,1.125c-0.621,-0 -1.125,-0.505 -1.125,-1.125c0,-0.621 0.504,-1.125 1.125,-1.125Zm0,0.75c-0.207,-0 -0.375,0.168 -0.375,0.375c0,0.207 0.168,0.375 0.375,0.375c0.207,-0 0.375,-0.168 0.375,-0.375c0,-0.207 -0.168,-0.375 -0.375,-0.375Z",
|
|
"fill": {},
|
|
"name": "path",
|
|
"type": "path"
|
|
},
|
|
{
|
|
"cx": "105",
|
|
"cy": "49.5",
|
|
"fill": {},
|
|
"id": "T22",
|
|
"name": "T22",
|
|
"r": "1.125",
|
|
"type": "circle"
|
|
},
|
|
{
|
|
"d": "M105,48.375c0.621,0 1.125,0.504 1.125,1.125c0,0.621 -0.504,1.125 -1.125,1.125c-0.621,0 -1.125,-0.504 -1.125,-1.125c0,-0.621 0.504,-1.125 1.125,-1.125Zm0,0.75c-0.207,0 -0.375,0.168 -0.375,0.375c0,0.207 0.168,0.375 0.375,0.375c0.207,0 0.375,-0.168 0.375,-0.375c0,-0.207 -0.168,-0.375 -0.375,-0.375Z",
|
|
"fill": {},
|
|
"name": "path",
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M110.053,40.803c1.261,1.159 1.896,2.604 1.87,4.348c0.009,2.024 -0.592,3.495 -1.87,4.349",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"id": "Open2",
|
|
"name": "Open2",
|
|
"stroke": {
|
|
"linejoin": "round",
|
|
"miterlimit": "1.5",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
}
|
|
],
|
|
"id": "CB02",
|
|
"name": "CB02",
|
|
"type": "group"
|
|
},
|
|
{
|
|
"elements": [
|
|
{
|
|
"name": "group",
|
|
"transform": "matrix(4.16667,0,0,4.16667,97.0707,25.6728)",
|
|
"type": "group"
|
|
},
|
|
{
|
|
"fill": {},
|
|
"name": "text",
|
|
"style": {
|
|
"fontFamily": "\u0027ArialMT\u0027, \u0027Arial\u0027",
|
|
"fontSize": "4.167px"
|
|
},
|
|
"text": "NC",
|
|
"type": "text",
|
|
"x": "91.053px",
|
|
"y": "25.673px"
|
|
},
|
|
{
|
|
"d": "M89.543,19.544c1.2,-1.261 2.694,-1.896 4.5,-1.87c2.094,-0.009 3.615,0.592 4.5,1.87",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"id": "Closed3",
|
|
"name": "Closed3",
|
|
"stroke": {
|
|
"linejoin": "round",
|
|
"miterlimit": "1.5",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M88.418,20.669c-0,-0.621 0.504,-1.125 1.125,-1.125c0.621,0 1.125,0.504 1.125,1.125c-0,0.621 -0.504,1.125 -1.125,1.125c-0.621,0 -1.125,-0.504 -1.125,-1.125Z",
|
|
"fill": {},
|
|
"id": "T23",
|
|
"name": "T23",
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M88.418,20.669c-0,-0.621 0.504,-1.125 1.125,-1.125c0.621,0 1.125,0.504 1.125,1.125c-0,0.621 -0.504,1.125 -1.125,1.125c-0.621,0 -1.125,-0.504 -1.125,-1.125Zm0.75,0c-0,0.207 0.168,0.375 0.375,0.375c0.207,0 0.375,-0.168 0.375,-0.375c-0,-0.207 -0.168,-0.375 -0.375,-0.375c-0.207,0 -0.375,0.168 -0.375,0.375Z",
|
|
"fill": {},
|
|
"name": "path",
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M97.418,20.669c-0,-0.621 0.504,-1.125 1.125,-1.125c0.621,0 1.125,0.504 1.125,1.125c-0,0.621 -0.504,1.125 -1.125,1.125c-0.621,0 -1.125,-0.504 -1.125,-1.125Z",
|
|
"fill": {},
|
|
"id": "T13",
|
|
"name": "T13",
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M97.418,20.669c-0,-0.621 0.504,-1.125 1.125,-1.125c0.621,0 1.125,0.504 1.125,1.125c-0,0.621 -0.504,1.125 -1.125,1.125c-0.621,0 -1.125,-0.504 -1.125,-1.125Zm0.75,0c-0,0.207 0.168,0.375 0.375,0.375c0.207,0 0.375,-0.168 0.375,-0.375c-0,-0.207 -0.168,-0.375 -0.375,-0.375c-0.207,0 -0.375,0.168 -0.375,0.375Z",
|
|
"fill": {},
|
|
"name": "path",
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M89.543,15.884c1.2,-1.261 2.694,-1.896 4.5,-1.871c2.094,-0.008 3.615,0.592 4.5,1.871",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"id": "Open3",
|
|
"name": "Open3",
|
|
"stroke": {
|
|
"linejoin": "round",
|
|
"miterlimit": "1.5",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
}
|
|
],
|
|
"id": "CB01",
|
|
"name": "CB01",
|
|
"type": "group"
|
|
},
|
|
{
|
|
"elements": [
|
|
{
|
|
"d": "M105,50.625l0,18.633",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"linecap": "butt",
|
|
"linejoin": "round",
|
|
"miterlimit": "1.5",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M99.668,69.258l5.071,0",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"linecap": "butt",
|
|
"linejoin": "round",
|
|
"miterlimit": "1.5",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
}
|
|
],
|
|
"id": "Outline",
|
|
"name": "Outline",
|
|
"type": "group"
|
|
},
|
|
{
|
|
"elements": [
|
|
{
|
|
"d": "M105,39.678l0,-19.009",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"linecap": "butt",
|
|
"linejoin": "round",
|
|
"miterlimit": "1.5",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M99.668,20.669l5.071,0",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"linecap": "butt",
|
|
"linejoin": "round",
|
|
"miterlimit": "1.5",
|
|
"width": "0.75px"
|
|
},
|
|
"type": "path"
|
|
}
|
|
],
|
|
"id": "Inline",
|
|
"name": "Inline",
|
|
"type": "group"
|
|
}
|
|
],
|
|
"id": "CB-Block",
|
|
"name": "CB-Block",
|
|
"type": "group"
|
|
},
|
|
{
|
|
"elements": [
|
|
{
|
|
"fill": {
|
|
"opacity": "0",
|
|
"paint": "transparent"
|
|
},
|
|
"height": "112.5",
|
|
"id": "AlarmBorder",
|
|
"name": "AlarmBorder",
|
|
"type": "rect",
|
|
"width": "127.5",
|
|
"x": "0",
|
|
"y": "7.5"
|
|
},
|
|
{
|
|
"d": "M127.5,7.5l-0,112.5l-127.5,0l-0,-112.5l127.5,0Zm-0.75,0.75l-126,0l0,111l126,-0l-0,-111Z",
|
|
"fill": {
|
|
"paint": "transparent"
|
|
},
|
|
"name": "path",
|
|
"type": "path"
|
|
},
|
|
{
|
|
"d": "M127.858,0.648l6.489,6.489c0.199,0.199 0.199,0.522 0,0.721l-6.489,6.489c-0.199,0.199 -0.522,0.199 -0.721,0l-6.489,-6.489c-0.199,-0.199 -0.199,-0.522 -0,-0.721l6.489,-6.489c0.199,-0.199 0.522,-0.199 0.721,-0Z",
|
|
"fill": {
|
|
"paint": "#de7c33"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"linejoin": "round",
|
|
"miterlimit": "1.5",
|
|
"width": "0.48px"
|
|
},
|
|
"type": "path",
|
|
"visibility": "hidden"
|
|
},
|
|
{
|
|
"elements": [
|
|
{
|
|
"elements": [
|
|
{
|
|
"d": "M127.163,8.96l-0.351,-4.735l1.371,0l-0.34,4.735l-0.68,-0Zm-0.318,1.81l0,-1.105l1.305,0l0,1.105l-1.305,0Z",
|
|
"fill": {
|
|
"paint": "#fff",
|
|
"rule": "nonzero"
|
|
},
|
|
"name": "path",
|
|
"type": "path"
|
|
}
|
|
],
|
|
"name": "group",
|
|
"type": "group"
|
|
}
|
|
],
|
|
"name": "group",
|
|
"type": "group",
|
|
"visibility": "hidden"
|
|
},
|
|
{
|
|
"elements": [
|
|
{
|
|
"d": "M126.855,1.849c0.134,-0.227 0.378,-0.367 0.643,-0.367c0.264,-0 0.508,0.14 0.642,0.367c1.411,2.401 4.768,8.113 6.195,10.541c0.136,0.231 0.137,0.516 0.005,0.748c-0.133,0.232 -0.38,0.375 -0.647,0.375l-12.39,0c-0.268,0 -0.515,-0.143 -0.647,-0.375c-0.133,-0.232 -0.131,-0.517 0.004,-0.748c1.427,-2.428 4.784,-8.14 6.195,-10.541Z",
|
|
"fill": {
|
|
"paint": "#f4b834"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"linejoin": "round",
|
|
"miterlimit": "1.5",
|
|
"width": "0.48px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"elements": [
|
|
{
|
|
"elements": [
|
|
{
|
|
"d": "M127.126,9.942l-0.389,-4.988l1.521,0l-0.377,4.988l-0.755,-0Zm-0.353,1.907l0,-1.164l1.449,0l-0,1.164l-1.449,-0Z",
|
|
"fill": {
|
|
"paint": "#fff",
|
|
"rule": "nonzero"
|
|
},
|
|
"name": "path",
|
|
"type": "path"
|
|
}
|
|
],
|
|
"name": "group",
|
|
"type": "group"
|
|
}
|
|
],
|
|
"name": "group",
|
|
"type": "group"
|
|
}
|
|
],
|
|
"name": "group",
|
|
"type": "group",
|
|
"visibility": "hidden"
|
|
},
|
|
{
|
|
"elements": [
|
|
{
|
|
"d": "M132.307,1.181l-0,12.633c-0,0.265 -0.216,0.481 -0.481,0.481l-8.657,-0c-0.265,-0 -0.48,-0.216 -0.48,-0.481l-0,-12.633c-0,-0.265 0.215,-0.48 0.48,-0.48l8.657,-0c0.265,-0 0.481,0.215 0.481,0.48Z",
|
|
"fill": {
|
|
"paint": "#7166b7"
|
|
},
|
|
"name": "path",
|
|
"stroke": {
|
|
"linejoin": "round",
|
|
"miterlimit": "1.5",
|
|
"paint": "#000",
|
|
"width": "0.48px"
|
|
},
|
|
"type": "path"
|
|
},
|
|
{
|
|
"elements": [
|
|
{
|
|
"elements": [
|
|
{
|
|
"d": "M127.126,9.042l-0.389,-5.001l1.521,-0l-0.377,5.001l-0.755,0Zm-0.353,1.912l0,-1.167l1.449,0l-0,1.167l-1.449,0Z",
|
|
"fill": {
|
|
"paint": "#fff",
|
|
"rule": "nonzero"
|
|
},
|
|
"name": "path",
|
|
"type": "path"
|
|
}
|
|
],
|
|
"name": "group",
|
|
"type": "group"
|
|
}
|
|
],
|
|
"name": "group",
|
|
"type": "group"
|
|
}
|
|
],
|
|
"name": "group",
|
|
"type": "group",
|
|
"visibility": "hidden"
|
|
},
|
|
{
|
|
"cx": "127.498",
|
|
"cy": "7.498",
|
|
"fill": {
|
|
"paint": "#e22028"
|
|
},
|
|
"name": "circle",
|
|
"r": "7.198",
|
|
"stroke": {
|
|
"linejoin": "round",
|
|
"miterlimit": "1.5",
|
|
"paint": "#000",
|
|
"width": "0.48px"
|
|
},
|
|
"type": "circle",
|
|
"visibility": "hidden"
|
|
},
|
|
{
|
|
"elements": [
|
|
{
|
|
"elements": [
|
|
{
|
|
"d": "M125.712,9.232l-0.389,-5.617l1.521,-0l-0.377,5.617l-0.755,0Zm-0.353,2.148l0,-1.31l1.449,-0l-0,1.31l-1.449,0Z",
|
|
"fill": {
|
|
"paint": "#fff",
|
|
"rule": "nonzero"
|
|
},
|
|
"name": "path",
|
|
"type": "path"
|
|
}
|
|
],
|
|
"name": "group",
|
|
"type": "group"
|
|
},
|
|
{
|
|
"elements": [
|
|
{
|
|
"d": "M128.597,9.232l-0.389,-5.617l1.521,-0l-0.377,5.617l-0.755,0Zm-0.353,2.148l0,-1.31l1.449,-0l-0,1.31l-1.449,0Z",
|
|
"fill": {
|
|
"paint": "#fff",
|
|
"rule": "nonzero"
|
|
},
|
|
"name": "path",
|
|
"type": "path"
|
|
}
|
|
],
|
|
"name": "group",
|
|
"type": "group"
|
|
}
|
|
],
|
|
"name": "group",
|
|
"type": "group",
|
|
"visibility": "hidden"
|
|
}
|
|
],
|
|
"id": "AlarmItems",
|
|
"name": "AlarmItems",
|
|
"type": "group"
|
|
}
|
|
],
|
|
"fill": {
|
|
"rule": "evenodd"
|
|
},
|
|
"stroke": {
|
|
"linecap": "round",
|
|
"miterlimit": "1"
|
|
},
|
|
"style": {
|
|
"clipRule": "evenodd"
|
|
},
|
|
"viewBox": "0 0 135 120"
|
|
},
|
|
"type": "ia.shapes.svg"
|
|
}
|
|
],
|
|
"events": {
|
|
"dom": {
|
|
"onClick": {
|
|
"config": {
|
|
"script": "\tpageId \u003d self.page.props.pageId\n\tsystem.perspective.print(\u0027pageId: {}\u0027.format(pageId))\n\t\n\ttagPath \u003d self.view.params.tagPath\n\tobjectName \u003d self.view.params.objectName\n\tutils.nav.openEQPopup(objectName, tagPath)"
|
|
},
|
|
"scope": "G",
|
|
"type": "script"
|
|
}
|
|
}
|
|
},
|
|
"meta": {
|
|
"name": "root"
|
|
},
|
|
"propConfig": {
|
|
"custom.alarmSeverity": {
|
|
"binding": {
|
|
"config": {
|
|
"fallbackDelay": 2.5,
|
|
"mode": "indirect",
|
|
"references": {
|
|
"tagPath": "{view.params.tagPath}"
|
|
},
|
|
"tagPath": "{tagPath}/AlarmSummary/ActiveAlarms"
|
|
},
|
|
"transforms": [
|
|
{
|
|
"code": "\treturn alarm.summary.calcMaxPriority(self.view.params.tagPath)",
|
|
"type": "script"
|
|
}
|
|
],
|
|
"type": "tag"
|
|
}
|
|
}
|
|
},
|
|
"props": {
|
|
"style": {
|
|
"classes": "containers/HoverOver",
|
|
"overflow": "visible"
|
|
}
|
|
},
|
|
"type": "ia.container.coord"
|
|
}
|
|
} |