diff --git a/NON-APPROVED/COMMON/DEVICES/vacuum/vgc/vac_vgc.bob b/NON-APPROVED/COMMON/DEVICES/vacuum/vgc/vac_vgc.bob index 1f489285274074af0c8c23364097abc9a6aa1665..e42282d405b21e9dca79519b54c486f869849179 100644 --- a/NON-APPROVED/COMMON/DEVICES/vacuum/vgc/vac_vgc.bob +++ b/NON-APPROVED/COMMON/DEVICES/vacuum/vgc/vac_vgc.bob @@ -6,6 +6,10 @@ <FACEPLATE_TPG>Faceplate/vac_tpg-$(vacDEV)-brief.bob</FACEPLATE_TPG> <vacDEV>vgc</vacDEV> <vacPREFIX>$(SEC)-$(SUBSEC):$(DIS)-$(DEV)-$(IDX)</vacPREFIX> + <vacRELAY1_DESC>$(RELAY1_DESC)</vacRELAY1_DESC> + <vacRELAY2_DESC>$(RELAY2_DESC)</vacRELAY2_DESC> + <vacRELAY3_DESC>$(RELAY3_DESC)</vacRELAY3_DESC> + <vacRELAY4_DESC>$(RELAY4_DESC)</vacRELAY4_DESC> <vacSYMBOLS>$(ROOT=$(ESS_OPIS=/ess-opis)/NON-APPROVED)/COMMON/DEVICES/vacuum/symbols</vacSYMBOLS> </macros> <width>133</width> diff --git a/NON-APPROVED/COMMON/DEVICES/vacuum/vgd/vac_vgd.bob b/NON-APPROVED/COMMON/DEVICES/vacuum/vgd/vac_vgd.bob index 559c63c5cfbbcfffab645d4ffbbd645f56259c75..eb123feffc4684e233ae5445d8e32c41e6939692 100644 --- a/NON-APPROVED/COMMON/DEVICES/vacuum/vgd/vac_vgd.bob +++ b/NON-APPROVED/COMMON/DEVICES/vacuum/vgd/vac_vgd.bob @@ -6,6 +6,8 @@ <FACEPLATE_TPG>Faceplate/vac_tpg-$(vacDEV)-brief.bob</FACEPLATE_TPG> <vacDEV>vgd</vacDEV> <vacPREFIX>$(SEC)-$(SUBSEC):$(DIS)-$(DEV)-$(IDX)</vacPREFIX> + <vacRELAY1_DESC>$(RELAY1_DESC)</vacRELAY1_DESC> + <vacRELAY2_DESC>$(RELAY2_DESC)</vacRELAY2_DESC> <vacSYMBOLS>$(ROOT=$(ESS_OPIS=/ess-opis)/NON-APPROVED)/COMMON/DEVICES/vacuum/symbols</vacSYMBOLS> </macros> <width>133</width> diff --git a/NON-APPROVED/COMMON/DEVICES/vacuum/vgp/vac_vgp.bob b/NON-APPROVED/COMMON/DEVICES/vacuum/vgp/vac_vgp.bob index 817da1f490df940ba3915f35bea602b40bafb2ad..288a98af13c23b711dc84bae82dcaf4504fa4ff8 100644 --- a/NON-APPROVED/COMMON/DEVICES/vacuum/vgp/vac_vgp.bob +++ b/NON-APPROVED/COMMON/DEVICES/vacuum/vgp/vac_vgp.bob @@ -6,6 +6,8 @@ <FACEPLATE_TPG>Faceplate/vac_tpg-$(vacDEV)-brief.bob</FACEPLATE_TPG> <vacDEV>vgp</vacDEV> <vacPREFIX>$(SEC)-$(SUBSEC):$(DIS)-$(DEV)-$(IDX)</vacPREFIX> + <vacRELAY1_DESC>$(RELAY1_DESC)</vacRELAY1_DESC> + <vacRELAY2_DESC>$(RELAY2_DESC)</vacRELAY2_DESC> <vacSYMBOLS>$(ROOT=$(ESS_OPIS=/ess-opis)/NON-APPROVED)/COMMON/DEVICES/vacuum/symbols</vacSYMBOLS> </macros> <width>133</width> diff --git a/NON-APPROVED/COMMON/DEVICES/vacuum/vpg/error.py b/NON-APPROVED/COMMON/DEVICES/vacuum/vpg/error.py index db8a9fc161071fbfde3aee1488537d796252ed3f..049ead6d6bd5cd41213488b8ddfce4dce40ced29 100644 --- a/NON-APPROVED/COMMON/DEVICES/vacuum/vpg/error.py +++ b/NON-APPROVED/COMMON/DEVICES/vacuum/vpg/error.py @@ -19,6 +19,13 @@ if PVUtil.getLong(pvs[0]): 90 : "Turbo-Pumps Not Available", 89 : "Max Auto-Restart", 88 : "Back-Up Primary Pumping System Error", + 85 : "VPSU-00020 24VDC Power Supply Overload", + 84 : "VPSU-00020 24VDC Power Supply Tripped", + 83 : "VPSU-00020 400VAC 3-Phases Power Supply Tripped", + 82 : "VPSU-00010 24VDC Power Supply Overload", + 81 : "VPSU-00010 24VDC Power Supply Tripped", + 80 : "VPSU-00010 400VAC 3-Phases Power Supply Tripped", + 15 : "Mode Selection Error - Vacuum Sector Vented", 14 : "Mode Selection Error - Vacuum Sector Under Vacuum", 13 : "Primary Pumping System: Rescue Primary System is Off", diff --git a/NON-APPROVED/COMMON/DEVICES/vacuum/vpg/status.js b/NON-APPROVED/COMMON/DEVICES/vacuum/vpg/status.js deleted file mode 100644 index a9a977733391f412380e17ab17f58df4642e23ca..0000000000000000000000000000000000000000 --- a/NON-APPROVED/COMMON/DEVICES/vacuum/vpg/status.js +++ /dev/null @@ -1,82 +0,0 @@ -PVUtil = org.csstudio.display.builder.runtime.script.PVUtil; -ScriptUtil = org.csstudio.display.builder.runtime.script.ScriptUtil; - -var pvAccelerating = 0; -var pvAtNominalSpeed = 0; -var pvStopped = 0; -var pvError = 0; - -var pvStatus = pvs[0]; - -var sum = 0; -var isValid = 0; -var status = "N/A"; - -var debug = widget.getEffectiveMacros().getValue("DEBUG"); -if (debug) { - debug = debug[0]; - switch (debug) { - case '1': - case 'Y': - case 'y': - case 'T': - case 't': - debug = true; - break; - - default: - debug = false; - } -} -else - debug = false; - -if (debug) - Logger = org.csstudio.display.builder.runtime.script.ScriptUtil.getLogger(); -else { - Logger = new Object(); - Logger.info = function() {} - Logger.warning = function() {} - Logger.severe = function(text) { org.csstudio.display.builder.runtime.script.ScriptUtil.getLogger().severe(text);} -} - -function log_pv(pv) { - Logger.info(pv + ": " + PVUtil.getString(pv)); -} - -try { - pvAccelerating = 1 * PVUtil.getInt(pvs[1]); - pvAtNominalSpeed = 2 * PVUtil.getInt(pvs[2]); - pvStopped = 4 * PVUtil.getInt(pvs[3]); - pvError = 8 * PVUtil.getInt(pvs[4]); - - sum = pvAccelerating | pvAtNominalSpeed | pvStopped | pvError; - isValid = (sum & (sum - 1)) == 0 ? 1 : 0; - - log_pv(pvs[1]); - log_pv(pvs[2]); - log_pv(pvs[3]); - log_pv(pvs[4]); - - if (pvError) { - Logger.info(pvStatus + ": ERROR"); - status = "ERROR"; - } else if (isValid == 0) { - Logger.severe(pvStatus + ": Invalid combination"); - } else if (pvStopped) { - Logger.info(pvStatus + ": STOPPED"); - status = "STOPPED"; - } else if (pvAtNominalSpeed) { - Logger.info(pvStatus + ": NOMINAL-SPEED"); - status = "At NOMINAL-SPEED"; - } else if (pvAccelerating) { - Logger.info(pvStatus + ": ACCELERATING"); - status = "ACCELERATING"; - } else - Logger.severe(pvStatus + ": Unknown combination:" + sum); -} catch (err) { - Logger.severe("NO CONNECTION: " + err); -} - - -pvStatus.write(status); diff --git a/NON-APPROVED/TS2/ts2-cryomodule/interlocks.bob b/NON-APPROVED/TS2/ts2-cryomodule/interlocks.bob index 717e6d5dabf4d5af6bdd345ee8e0131655b33ebd..30acefdadcc3541e34edfa213885ad46ec83d2b8 100644 --- a/NON-APPROVED/TS2/ts2-cryomodule/interlocks.bob +++ b/NON-APPROVED/TS2/ts2-cryomodule/interlocks.bob @@ -68,8 +68,8 @@ <widget type="label" version="2.0.0"> <name>I4_label</name> <text>Recovery line (SCV91):</text> - <x>46</x> - <y>259</y> + <x>45</x> + <y>273</y> <width>189</width> <font> <font family="Source Sans Pro" style="BOLD" size="16.0"> @@ -142,8 +142,8 @@ <widget type="label" version="2.0.0"> <name>I3_label_text_1</name> <text>TS2-010CRM:Cryo-CV-091:Closed</text> - <x>215</x> - <y>259</y> + <x>214</x> + <y>273</y> <width>300</width> <font> <font family="Source Sans Pro" style="ITALIC" size="16.0"> @@ -153,8 +153,8 @@ <widget type="led" version="2.0.0"> <name>SCV91_led</name> <pv_name>TS2-010CRM:Cryo-CV-091:Closed</pv_name> - <x>560</x> - <y>259</y> + <x>559</x> + <y>273</y> <off_color> <color name="RED" red="252" green="13" blue="27"> </color> @@ -163,8 +163,8 @@ <widget type="label" version="2.0.0"> <name>I3_label_text_2</name> <text>TS2-010CRM:Cryo-PT-003:MeasValue</text> - <x>215</x> - <y>350</y> + <x>214</x> + <y>364</y> <width>300</width> <font> <font family="Source Sans Pro" style="ITALIC" size="16.0"> @@ -174,16 +174,16 @@ <widget type="textupdate" version="2.0.0"> <name>Text Update</name> <pv_name>TS2-010CRM:Cryo-PT-003:MeasValue</pv_name> - <x>516</x> - <y>350</y> + <x>515</x> + <y>364</y> <width>64</width> <precision>2</precision> </widget> <widget type="label" version="2.0.0"> <name>I3_label_text_3</name> <text>TS2-010CDL:Cryo-CV-82303:ValvePosition</text> - <x>215</x> - <y>319</y> + <x>214</x> + <y>333</y> <width>300</width> <font> <font family="Source Sans Pro" style="ITALIC" size="16.0"> @@ -193,16 +193,16 @@ <widget type="textupdate" version="2.0.0"> <name>Text Update_1</name> <pv_name>TS2-010CDL:Cryo-CV-82303:ValvePosition</pv_name> - <x>516</x> - <y>319</y> + <x>515</x> + <y>333</y> <width>64</width> <horizontal_alignment>2</horizontal_alignment> </widget> <widget type="label" version="2.0.0"> <name>I3_label_text_4</name> <text>TS2-010CRM:Cryo-PS-091:Off</text> - <x>215</x> - <y>290</y> + <x>214</x> + <y>304</y> <width>300</width> <font> <font family="Source Sans Pro" style="ITALIC" size="16.0"> @@ -212,8 +212,8 @@ <widget type="led" version="2.0.0"> <name>SCV91_led_1</name> <pv_name>TS2-010CRM:Cryo-PS-091:Opened</pv_name> - <x>560</x> - <y>290</y> + <x>559</x> + <y>304</y> <off_color> <color name="ON" red="70" green="255" blue="70"> </color> @@ -226,8 +226,8 @@ <widget type="label" version="2.0.0"> <name>13_label_1</name> <text>MotorOK:</text> - <x>136</x> - <y>228</y> + <x>135</x> + <y>242</y> <width>75</width> <font> <font family="Source Sans Pro" style="BOLD" size="16.0"> @@ -236,18 +236,19 @@ </widget> <widget type="label" version="2.0.0"> <name>13_label_2</name> - <text>CryoModuleReady (TICP):</text> - <x>21</x> + <text>Interlock CV-31311 (TICP):</text> + <x>10</x> <y>180</y> - <width>191</width> + <width>193</width> <font> <font family="Source Sans Pro" style="BOLD" size="16.0"> </font> </font> + <horizontal_alignment>2</horizontal_alignment> </widget> <widget type="label" version="2.0.0"> <name>I3_label_text_5</name> - <text>CryoOK and PT-003 < 1500 and CV-091 Closed</text> + <text>PT-003 < 1500 mBar</text> <x>215</x> <y>180</y> <width>300</width> @@ -266,22 +267,11 @@ </color> </off_color> </widget> - <widget type="label" version="2.0.0"> - <name>I3_label_text_6</name> - <text>and CV-82303 Open</text> - <x>215</x> - <y>200</y> - <width>300</width> - <font> - <font family="Source Sans Pro" style="ITALIC" size="16.0"> - </font> - </font> - </widget> <widget type="label" version="2.0.0"> <name>I3_label_text_7</name> <text>CryoOK and Cavities < 5 K for 1 min</text> - <x>214</x> - <y>228</y> + <x>213</x> + <y>242</y> <width>300</width> <font> <font family="Source Sans Pro" style="ITALIC" size="16.0"> @@ -297,8 +287,8 @@ <WIDIndex>MotOK</WIDIndex> <WIDSecSub>TS2-010</WIDSecSub> </macros> - <x>560</x> - <y>218</y> + <x>559</x> + <y>232</y> <width>50</width> <height>32</height> <resize>2</resize> @@ -329,8 +319,80 @@ </action> </actions> <text>D</text> - <x>525</x> - <y>228</y> + <x>524</x> + <y>242</y> + <width>30</width> + <height>20</height> + <tooltip>$(actions)</tooltip> + </widget> + <widget type="label" version="2.0.0"> + <name>13_label_4</name> + <text>Night Mode OK:</text> + <x>42</x> + <y>211</y> + <width>161</width> + <font> + <font family="Source Sans Pro" style="BOLD" size="16.0"> + </font> + </font> + <horizontal_alignment>2</horizontal_alignment> + </widget> + <widget type="label" version="2.0.0"> + <name>I3_label_text_6</name> + <text>PT-003 > 1500 mBar OR LT > 90% during Night</text> + <x>215</x> + <y>211</y> + <width>300</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="led" version="2.0.0"> + <name>CryoRdy_led_4</name> + <pv_name>TS2-010CRM:Cryo-Virt-Night:Opened</pv_name> + <x>559</x> + <y>211</y> + <off_color> + <color name="RED" red="252" green="13" blue="27"> + </color> + </off_color> + </widget> + <widget type="label" version="2.0.0"> + <name>I4_label_1</name> + <text>Heaters:</text> + <x>126</x> + <y>393</y> + <width>80</width> + <font> + <font family="Source Sans Pro" style="BOLD" size="16.0"> + </font> + </font> + <horizontal_alignment>2</horizontal_alignment> + </widget> + <widget type="label" version="2.0.0"> + <name>I3_label_text_8</name> + <text>Temperature high OR Level low</text> + <x>214</x> + <y>393</y> + <width>345</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="action_button" version="3.0.0"> + <name>Action Button_2</name> + <actions> + <action type="open_display"> + <file>interlocks/EHinterlocks.bob</file> + <target>window</target> + <description>Open Display</description> + </action> + </actions> + <text>D</text> + <x>550</x> + <y>394</y> <width>30</width> <height>20</height> <tooltip>$(actions)</tooltip> diff --git a/NON-APPROVED/TS2/ts2-cryomodule/interlocks/EHinterlocks.bob b/NON-APPROVED/TS2/ts2-cryomodule/interlocks/EHinterlocks.bob new file mode 100644 index 0000000000000000000000000000000000000000..1bb8b10a334637420f35f5c37491675a237d7338 --- /dev/null +++ b/NON-APPROVED/TS2/ts2-cryomodule/interlocks/EHinterlocks.bob @@ -0,0 +1,707 @@ +<?xml version="1.0" encoding="UTF-8"?> +<display version="2.0.0"> + <name>EH Interlocks</name> + <width>1200</width> + <height>850</height> + <widget type="rectangle" version="2.0.0"> + <name>title-bar_3</name> + <width>1200</width> + <height>50</height> + <line_width>0</line_width> + <background_color> + <color name="PRIMARY-HEADER-BACKGROUND" red="151" green="188" blue="202"> + </color> + </background_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Interlocks_title</name> + <class>TITLE</class> + <text>EH Interlocks</text> + <x use_class="true">20</x> + <y use_class="true">0</y> + <width>550</width> + <height use_class="true">50</height> + <font use_class="true"> + <font name="Header 1" family="Source Sans Pro" style="BOLD_ITALIC" size="36.0"> + </font> + </font> + <foreground_color use_class="true"> + <color name="HEADER-TEXT" red="0" green="0" blue="0"> + </color> + </foreground_color> + <transparent use_class="true">true</transparent> + <horizontal_alignment use_class="true">0</horizontal_alignment> + <vertical_alignment use_class="true">1</vertical_alignment> + <wrap_words use_class="true">false</wrap_words> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label</name> + <text>EH10_Protection:</text> + <x>30</x> + <y>80</y> + <width>133</width> + <font> + <font family="Source Sans Pro" style="BOLD" size="16.0"> + </font> + </font> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_text</name> + <text>Level low during Night Mode</text> + <x>172</x> + <y>80</y> + <width>300</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="led" version="2.0.0"> + <name>EH10_led</name> + <pv_name>TS2-010:Cryo-Virt-MISC:ReadDI_Others_001</pv_name> + <x>536</x> + <y>80</y> + <off_color> + <color name="ON" red="70" green="255" blue="70"> + </color> + </off_color> + <on_color> + <color name="MAJOR" red="252" green="13" blue="27"> + </color> + </on_color> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>LT001</name> + <pv_name>TS2-010CRM:Cryo-LT-001:MeasValue</pv_name> + <x>510</x> + <y>230</y> + <width>50</width> + <horizontal_alignment>2</horizontal_alignment> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_text_6</name> + <text>LT-001 < 10 % (back after 15%)</text> + <x>51</x> + <y>230</y> + <width>360</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_text_10</name> + <text>LT-002 < 10 % (back after 15%)</text> + <x>51</x> + <y>260</y> + <width>320</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>LT002</name> + <pv_name>TS2-010CRM:Cryo-LT-002:MeasValue</pv_name> + <x>510</x> + <y>260</y> + <width>50</width> + <horizontal_alignment>2</horizontal_alignment> + </widget> + <widget type="label" version="2.0.0"> + <name>13_label_4</name> + <text>Night Mode OK:</text> + <x>50</x> + <y>200</y> + <width>103</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + <horizontal_alignment>2</horizontal_alignment> + </widget> + <widget type="label" version="2.0.0"> + <name>I3_label_text_6</name> + <text>PT-003 > 1500 mBar OR LT > 90% during Night</text> + <x>170</x> + <y>200</y> + <width>300</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="led" version="2.0.0"> + <name>CryoRdy_led_4</name> + <pv_name>TS2-010CRM:Cryo-Virt-Night:Opened</pv_name> + <x>537</x> + <y>200</y> + <off_color> + <color name="RED" red="252" green="13" blue="27"> + </color> + </off_color> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_1</name> + <text>EH20_Protection:</text> + <x>30</x> + <y>110</y> + <width>133</width> + <font> + <font family="Source Sans Pro" style="BOLD" size="16.0"> + </font> + </font> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_text_1</name> + <text>Level low during Night Mode</text> + <x>172</x> + <y>110</y> + <width>300</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="led" version="2.0.0"> + <name>EH10_led_1</name> + <pv_name>TS2-010:Cryo-Virt-MISC:ReadDI_Others_005</pv_name> + <x>536</x> + <y>110</y> + <off_color> + <color name="ON" red="70" green="255" blue="70"> + </color> + </off_color> + <on_color> + <color name="MAJOR" red="252" green="13" blue="27"> + </color> + </on_color> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_2</name> + <text>EH30_Protection:</text> + <x>30</x> + <y>140</y> + <width>133</width> + <font> + <font family="Source Sans Pro" style="BOLD" size="16.0"> + </font> + </font> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_text_2</name> + <text>Level low during Night Mode</text> + <x>172</x> + <y>140</y> + <width>300</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="led" version="2.0.0"> + <name>EH10_led_2</name> + <pv_name>TS2-010:Cryo-Virt-MISC:ReadDI_Others_009</pv_name> + <x>536</x> + <y>140</y> + <off_color> + <color name="ON" red="70" green="255" blue="70"> + </color> + </off_color> + <on_color> + <color name="MAJOR" red="252" green="13" blue="27"> + </color> + </on_color> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_3</name> + <text>EH40_Protection:</text> + <x>30</x> + <y>170</y> + <width>133</width> + <font> + <font family="Source Sans Pro" style="BOLD" size="16.0"> + </font> + </font> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_text_3</name> + <text>Level low during Night Mode</text> + <x>172</x> + <y>170</y> + <width>300</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="led" version="2.0.0"> + <name>EH10_led_3</name> + <pv_name>TS2-010:Cryo-Virt-MISC:ReadDI_Others_013</pv_name> + <x>536</x> + <y>170</y> + <off_color> + <color name="ON" red="70" green="255" blue="70"> + </color> + </off_color> + <on_color> + <color name="MAJOR" red="252" green="13" blue="27"> + </color> + </on_color> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_4</name> + <text>EH11_Protection:</text> + <x>30</x> + <y>290</y> + <width>133</width> + <font> + <font family="Source Sans Pro" style="BOLD" size="16.0"> + </font> + </font> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_text_4</name> + <text>TT high during Night Mode</text> + <x>170</x> + <y>290</y> + <width>300</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="led" version="2.0.0"> + <name>EH10_led_4</name> + <pv_name>TS2-010:Cryo-Virt-MISC:ReadDI_Others_002</pv_name> + <x>536</x> + <y>290</y> + <off_color> + <color name="ON" red="70" green="255" blue="70"> + </color> + </off_color> + <on_color> + <color name="MAJOR" red="252" green="13" blue="27"> + </color> + </on_color> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_text_7</name> + <text>TE-015 > 308 K (back after below 287 K)</text> + <x>51</x> + <y>320</y> + <width>360</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>LT001_1</name> + <pv_name>TS2-010CRM:Cryo-TE-015:MeasValue</pv_name> + <x>510</x> + <y>320</y> + <width>50</width> + <horizontal_alignment>2</horizontal_alignment> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_6</name> + <text>EH12_Protection:</text> + <x>620</x> + <y>80</y> + <width>133</width> + <font> + <font family="Source Sans Pro" style="BOLD" size="16.0"> + </font> + </font> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_text_8</name> + <text>TT high during Night Mode</text> + <x>760</x> + <y>80</y> + <width>300</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="led" version="2.0.0"> + <name>EH10_led_6</name> + <pv_name>TS2-010:Cryo-Virt-MISC:ReadDI_Others_003</pv_name> + <x>1126</x> + <y>80</y> + <off_color> + <color name="ON" red="70" green="255" blue="70"> + </color> + </off_color> + <on_color> + <color name="MAJOR" red="252" green="13" blue="27"> + </color> + </on_color> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_text_9</name> + <text>TE-044 > 308 K (back after below 287 K)</text> + <x>641</x> + <y>110</y> + <width>360</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>LT001_2</name> + <pv_name>TS2-010CRM:Cryo-TE-044:MeasValue</pv_name> + <x>1100</x> + <y>110</y> + <width>50</width> + <horizontal_alignment>2</horizontal_alignment> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_text_11</name> + <text>TE-014 broken</text> + <x>910</x> + <y>110</y> + <width>120</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + <foreground_color> + <color name="RED" red="252" green="13" blue="27"> + </color> + </foreground_color> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_8</name> + <text>EH21_Protection:</text> + <x>30</x> + <y>350</y> + <width>133</width> + <font> + <font family="Source Sans Pro" style="BOLD" size="16.0"> + </font> + </font> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_text_15</name> + <text>TT high during Night Mode</text> + <x>170</x> + <y>350</y> + <width>300</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="led" version="2.0.0"> + <name>EH10_led_8</name> + <pv_name>TS2-010:Cryo-Virt-MISC:ReadDI_Others_006</pv_name> + <x>536</x> + <y>350</y> + <off_color> + <color name="ON" red="70" green="255" blue="70"> + </color> + </off_color> + <on_color> + <color name="MAJOR" red="252" green="13" blue="27"> + </color> + </on_color> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_text_16</name> + <text>TE-025 > 308 K (back after below 287 K)</text> + <x>51</x> + <y>380</y> + <width>360</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>LT001_4</name> + <pv_name>TS2-010CRM:Cryo-TE-025:MeasValue</pv_name> + <x>510</x> + <y>380</y> + <width>50</width> + <horizontal_alignment>2</horizontal_alignment> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_9</name> + <text>EH31_Protection:</text> + <x>30</x> + <y>410</y> + <width>133</width> + <font> + <font family="Source Sans Pro" style="BOLD" size="16.0"> + </font> + </font> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_text_17</name> + <text>TT high during Night Mode</text> + <x>170</x> + <y>410</y> + <width>300</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="led" version="2.0.0"> + <name>EH10_led_9</name> + <pv_name>TS2-010:Cryo-Virt-MISC:ReadDI_Others_010</pv_name> + <x>536</x> + <y>410</y> + <off_color> + <color name="ON" red="70" green="255" blue="70"> + </color> + </off_color> + <on_color> + <color name="MAJOR" red="252" green="13" blue="27"> + </color> + </on_color> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_text_18</name> + <text>TE-035 > 308 K (back after below 287 K)</text> + <x>51</x> + <y>440</y> + <width>360</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>LT001_5</name> + <pv_name>TS2-010CRM:Cryo-TE-035:MeasValue</pv_name> + <x>510</x> + <y>440</y> + <width>50</width> + <horizontal_alignment>2</horizontal_alignment> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_10</name> + <text>EH41_Protection:</text> + <x>30</x> + <y>470</y> + <width>133</width> + <font> + <font family="Source Sans Pro" style="BOLD" size="16.0"> + </font> + </font> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_text_19</name> + <text>TT high during Night Mode</text> + <x>170</x> + <y>470</y> + <width>300</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="led" version="2.0.0"> + <name>EH10_led_10</name> + <pv_name>TS2-010:Cryo-Virt-MISC:ReadDI_Others_014</pv_name> + <x>536</x> + <y>470</y> + <off_color> + <color name="ON" red="70" green="255" blue="70"> + </color> + </off_color> + <on_color> + <color name="MAJOR" red="252" green="13" blue="27"> + </color> + </on_color> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_text_20</name> + <text>TE-045 > 308 K (back after below 287 K)</text> + <x>51</x> + <y>500</y> + <width>360</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>LT001_6</name> + <pv_name>TS2-010CRM:Cryo-TE-045:MeasValue</pv_name> + <x>510</x> + <y>500</y> + <width>50</width> + <horizontal_alignment>2</horizontal_alignment> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_11</name> + <text>EH22_Protection:</text> + <x>620</x> + <y>140</y> + <width>133</width> + <font> + <font family="Source Sans Pro" style="BOLD" size="16.0"> + </font> + </font> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_text_21</name> + <text>TT high during Night Mode</text> + <x>760</x> + <y>140</y> + <width>300</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="led" version="2.0.0"> + <name>EH10_led_11</name> + <pv_name>TS2-010:Cryo-Virt-MISC:ReadDI_Others_007</pv_name> + <x>1126</x> + <y>140</y> + <off_color> + <color name="ON" red="70" green="255" blue="70"> + </color> + </off_color> + <on_color> + <color name="MAJOR" red="252" green="13" blue="27"> + </color> + </on_color> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_text_22</name> + <text>TE-024 > 308 K (back after below 287 K)</text> + <x>641</x> + <y>170</y> + <width>360</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>LT001_7</name> + <pv_name>TS2-010CRM:Cryo-TE-024:MeasValue</pv_name> + <x>1100</x> + <y>170</y> + <width>50</width> + <horizontal_alignment>2</horizontal_alignment> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_12</name> + <text>EH32_Protection:</text> + <x>620</x> + <y>200</y> + <width>133</width> + <font> + <font family="Source Sans Pro" style="BOLD" size="16.0"> + </font> + </font> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_text_24</name> + <text>TT high during Night Mode</text> + <x>760</x> + <y>200</y> + <width>300</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="led" version="2.0.0"> + <name>EH10_led_12</name> + <pv_name>TS2-010:Cryo-Virt-MISC:ReadDI_Others_011</pv_name> + <x>1126</x> + <y>200</y> + <off_color> + <color name="ON" red="70" green="255" blue="70"> + </color> + </off_color> + <on_color> + <color name="MAJOR" red="252" green="13" blue="27"> + </color> + </on_color> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_text_25</name> + <text>TE-034 > 308 K (back after below 287 K)</text> + <x>641</x> + <y>230</y> + <width>360</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>LT001_8</name> + <pv_name>TS2-010CRM:Cryo-TE-034:MeasValue</pv_name> + <x>1100</x> + <y>230</y> + <width>50</width> + <horizontal_alignment>2</horizontal_alignment> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_13</name> + <text>EH42_Protection:</text> + <x>620</x> + <y>260</y> + <width>133</width> + <font> + <font family="Source Sans Pro" style="BOLD" size="16.0"> + </font> + </font> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_text_26</name> + <text>TT high during Night Mode</text> + <x>760</x> + <y>260</y> + <width>300</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="led" version="2.0.0"> + <name>EH10_led_13</name> + <pv_name>TS2-010:Cryo-Virt-MISC:ReadDI_Others_015</pv_name> + <x>1126</x> + <y>260</y> + <off_color> + <color name="ON" red="70" green="255" blue="70"> + </color> + </off_color> + <on_color> + <color name="MAJOR" red="252" green="13" blue="27"> + </color> + </on_color> + </widget> + <widget type="label" version="2.0.0"> + <name>I2_label_text_27</name> + <text>TE-044 > 308 K (back after below 287 K)</text> + <x>641</x> + <y>290</y> + <width>360</width> + <font> + <font family="Source Sans Pro" style="ITALIC" size="16.0"> + </font> + </font> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>LT001_9</name> + <pv_name>TS2-010CRM:Cryo-TE-044:MeasValue</pv_name> + <x>1100</x> + <y>290</y> + <width>50</width> + <horizontal_alignment>2</horizontal_alignment> + </widget> +</display>