style.yaml 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013
  1. 411-FFM-5-1305:
  2. background_color: rgba(0, 0, 0, 0)
  3. decimal: '1'
  4. exponential: 'false'
  5. formula: ''
  6. header:
  7. size: 14
  8. title: 'W.flow: '
  9. weight: '400'
  10. height: 19
  11. larger: '12'
  12. left: 91px
  13. lesser: '5'
  14. linkhtml: 'true'
  15. ref: 411-FFM-5-1305
  16. top: 232px
  17. trend: 'true'
  18. type: data
  19. unit:
  20. size: 14
  21. title: ' L/min'
  22. weight: '400'
  23. width: 153
  24. 411-FFM-5-2305:
  25. background_color: rgba(0, 0, 0, 0)
  26. decimal: '1'
  27. exponential: 'false'
  28. formula: ''
  29. header:
  30. size: 14
  31. title: 'W.flow: '
  32. weight: '400'
  33. height: 19
  34. larger: '12'
  35. left: 543px
  36. lesser: '5'
  37. linkhtml: 'true'
  38. ref: 411-FFM-5-2305
  39. top: 235px
  40. trend: 'true'
  41. type: data
  42. unit:
  43. size: 14
  44. title: ' L/min'
  45. weight: '400'
  46. width: 148
  47. 411-PCO-5-1300:
  48. background_color: rgba(0, 0, 0, 0)
  49. decimal: '0'
  50. exponential: 'false'
  51. formula: ''
  52. header:
  53. size: 16
  54. title: 'ON? '
  55. weight: '400'
  56. height: 21
  57. larger: ''
  58. left: 188px
  59. lesser: '0.5'
  60. linkhtml: 'true'
  61. ref: 411-PCO-5-1300
  62. top: 307px
  63. trend: 'true'
  64. type: data
  65. unit:
  66. size: 16
  67. title: ' '
  68. weight: '400'
  69. width: 101
  70. 411-PCO-5-2300:
  71. background_color: rgba(0, 0, 0, 0)
  72. decimal: '0'
  73. exponential: 'false'
  74. formula: ''
  75. header:
  76. size: 16
  77. title: 'ON? '
  78. weight: '400'
  79. height: 21
  80. larger: ''
  81. left: 637px
  82. lesser: '0.5'
  83. linkhtml: 'true'
  84. ref: 411-PCO-5-2300
  85. top: 306px
  86. trend: 'true'
  87. type: data
  88. unit:
  89. size: 16
  90. title: ' '
  91. weight: '400'
  92. width: 101
  93. 411-PTM-1-1470:
  94. background_color: rgba(0, 0, 0, 0)
  95. height: 36
  96. icon: TMP
  97. left: 434px
  98. linkhtml: 'true'
  99. 'off': '0'
  100. off_condition: offequal
  101. 'on': '1'
  102. on_condition: onequal
  103. ref: 411-PTM-1-1470
  104. rotate: matrix(1, 0, 0, 1, 0, 0)
  105. top: 1059px
  106. trend: 'false'
  107. type: icon
  108. width: 32
  109. 411-RBY-1-1011:
  110. background_color: rgba(0, 0, 0, 0)
  111. decimal: '3'
  112. exponential: 'false'
  113. formula: ''
  114. header:
  115. size: 16
  116. title: ' '
  117. weight: '400'
  118. height: 26
  119. larger: ''
  120. left: 86px
  121. lesser: ''
  122. linkhtml: 'true'
  123. ref: 411-RBY-1-1011
  124. top: 881px
  125. trend: 'true'
  126. type: data
  127. unit:
  128. size: 16
  129. title: ' T'
  130. weight: '400'
  131. width: 70
  132. 411-RBY-1-1012:
  133. background_color: rgba(0, 0, 0, 0)
  134. decimal: '3'
  135. exponential: 'false'
  136. formula: ''
  137. header:
  138. size: 16
  139. title: ' '
  140. weight: '400'
  141. height: 26
  142. larger: ''
  143. left: 356px
  144. lesser: ''
  145. linkhtml: 'true'
  146. ref: 411-RBY-1-1012
  147. top: 882px
  148. trend: 'true'
  149. type: data
  150. unit:
  151. size: 16
  152. title: ' T'
  153. weight: '400'
  154. width: 71
  155. 411-RBY-1-2011:
  156. background_color: rgba(0, 0, 0, 0)
  157. decimal: '3'
  158. exponential: 'false'
  159. formula: ''
  160. header:
  161. size: 16
  162. title: ' '
  163. weight: '400'
  164. height: 27
  165. larger: ''
  166. left: 536px
  167. lesser: ''
  168. linkhtml: 'true'
  169. ref: 411-RBY-1-2011
  170. top: 880px
  171. trend: 'true'
  172. type: data
  173. unit:
  174. size: 16
  175. title: ' T'
  176. weight: '400'
  177. width: 84
  178. 411-RBY-1-2012:
  179. background_color: rgba(0, 0, 0, 0)
  180. decimal: '3'
  181. exponential: 'false'
  182. formula: ''
  183. header:
  184. size: 16
  185. title: ' '
  186. weight: '400'
  187. height: 27
  188. larger: ''
  189. left: 795px
  190. lesser: ''
  191. linkhtml: 'true'
  192. ref: 411-RBY-1-2012
  193. top: 880px
  194. trend: 'true'
  195. type: data
  196. unit:
  197. size: 16
  198. title: ' T'
  199. weight: '400'
  200. width: 79
  201. 411-REI-1-1111:
  202. background_color: rgba(0, 0, 0, 0)
  203. decimal: '2'
  204. exponential: 'false'
  205. formula: ''
  206. header:
  207. size: 16
  208. title: ' '
  209. weight: '700'
  210. height: 26
  211. larger: ''
  212. left: 212px
  213. lesser: ''
  214. linkhtml: 'true'
  215. ref: 411-REI-1-1111
  216. top: 882px
  217. trend: 'true'
  218. type: data
  219. unit:
  220. size: 16
  221. title: ' A'
  222. weight: '700'
  223. width: 86
  224. 411-REI-1-2110:
  225. background_color: rgba(0, 0, 0, 0)
  226. decimal: '2'
  227. exponential: 'false'
  228. formula: ''
  229. header:
  230. size: 16
  231. title: ' '
  232. weight: '700'
  233. height: 22
  234. larger: ''
  235. left: 663px
  236. lesser: ''
  237. linkhtml: 'true'
  238. ref: 411-REI-1-2110
  239. top: 881px
  240. trend: 'true'
  241. type: data
  242. unit:
  243. size: 16
  244. title: ' A'
  245. weight: '700'
  246. width: 79
  247. 411-REU-1-1120:
  248. background_color: rgba(0, 0, 0, 0)
  249. decimal: '2'
  250. exponential: 'false'
  251. formula: ''
  252. header:
  253. size: 16
  254. title: ' '
  255. weight: '400'
  256. height: 24
  257. larger: ''
  258. left: 212px
  259. lesser: ''
  260. linkhtml: 'true'
  261. ref: 411-REU-1-1120
  262. top: 916px
  263. trend: 'true'
  264. type: data
  265. unit:
  266. size: 16
  267. title: ' V'
  268. weight: '400'
  269. width: 70
  270. 411-REU-1-2120:
  271. background_color: rgba(0, 0, 0, 0)
  272. decimal: '2'
  273. exponential: 'false'
  274. formula: ''
  275. header:
  276. size: 16
  277. title: ' '
  278. weight: '400'
  279. height: 25
  280. larger: ''
  281. left: 663px
  282. lesser: ''
  283. linkhtml: 'true'
  284. ref: 411-REU-1-2120
  285. top: 914px
  286. trend: 'true'
  287. type: data
  288. unit:
  289. size: 16
  290. title: ' V'
  291. weight: '400'
  292. width: 79
  293. 411-RPM-1-1420:
  294. background_color: rgba(0, 0, 0, 0)
  295. decimal: '2'
  296. exponential: 'true'
  297. formula: ''
  298. header:
  299. size: 16
  300. title: 'PS1: '
  301. weight: '400'
  302. height: 23
  303. larger: ''
  304. left: 185px
  305. lesser: ''
  306. linkhtml: 'true'
  307. ref: 411-RPM-1-1420
  308. top: 966px
  309. trend: 'true'
  310. type: data
  311. unit:
  312. size: 16
  313. title: ' mbar'
  314. weight: '400'
  315. width: 139
  316. 411-RPM-1-2420:
  317. background_color: rgba(0, 0, 0, 0)
  318. decimal: '2'
  319. exponential: 'true'
  320. formula: ''
  321. header:
  322. size: 16
  323. title: 'PS2: '
  324. weight: '400'
  325. height: 21
  326. larger: ''
  327. left: 614px
  328. lesser: ''
  329. linkhtml: 'true'
  330. ref: 411-RPM-1-2420
  331. top: 966px
  332. trend: 'true'
  333. type: data
  334. unit:
  335. size: 16
  336. title: ' mbar'
  337. weight: '400'
  338. width: 141
  339. 411-RPV-1-1460:
  340. background_color: rgba(0, 0, 0, 0)
  341. decimal: '2'
  342. exponential: 'true'
  343. formula: ''
  344. header:
  345. size: 16
  346. title: 'Iso.Vac.: '
  347. weight: '400'
  348. height: 27
  349. larger: ''
  350. left: 398px
  351. lesser: ''
  352. linkhtml: 'true'
  353. ref: 411-RPV-1-1460
  354. top: 1002px
  355. trend: 'true'
  356. type: data
  357. unit:
  358. size: 16
  359. title: ' mbar'
  360. weight: '400'
  361. width: 185
  362. 411-RTP-5-1303:
  363. background_color: rgba(0, 0, 0, 0)
  364. decimal: '1'
  365. exponential: 'false'
  366. formula: ''
  367. header:
  368. size: 14
  369. title: ' '
  370. weight: '400'
  371. height: 19
  372. larger: ''
  373. left: 184px
  374. lesser: ''
  375. linkhtml: 'true'
  376. ref: 411-RTP-5-1303
  377. top: 334px
  378. trend: 'true'
  379. type: data
  380. unit:
  381. size: 14
  382. title: ' K'
  383. weight: '400'
  384. width: 65
  385. 411-RTP-5-1304:
  386. background_color: rgba(0, 0, 0, 0)
  387. decimal: '1'
  388. exponential: 'false'
  389. formula: ''
  390. header:
  391. size: 14
  392. title: ' '
  393. weight: '400'
  394. height: 19
  395. larger: ''
  396. left: 252px
  397. lesser: ''
  398. linkhtml: 'true'
  399. ref: 411-RTP-5-1304
  400. top: 343px
  401. trend: 'true'
  402. type: data
  403. unit:
  404. size: 14
  405. title: ' K'
  406. weight: '400'
  407. width: 65
  408. 411-RTP-5-2303:
  409. background_color: rgba(0, 0, 0, 0)
  410. decimal: '1'
  411. exponential: 'false'
  412. formula: ''
  413. header:
  414. size: 14
  415. title: ' '
  416. weight: '400'
  417. height: 19
  418. larger: ''
  419. left: 634px
  420. lesser: ''
  421. linkhtml: 'true'
  422. ref: 411-RTP-5-2303
  423. top: 330px
  424. trend: 'true'
  425. type: data
  426. unit:
  427. size: 14
  428. title: ' K'
  429. weight: '400'
  430. width: 68
  431. 411-RTY-1-1001:
  432. background_color: rgba(0, 0, 0, 0)
  433. decimal: '2'
  434. exponential: 'false'
  435. formula: ''
  436. header:
  437. size: 16
  438. title: ' '
  439. weight: '400'
  440. height: 25
  441. larger: ''
  442. left: 269px
  443. lesser: ''
  444. linkhtml: 'true'
  445. ref: 411-RTY-1-1001
  446. top: 471px
  447. trend: 'true'
  448. type: data
  449. unit:
  450. size: 16
  451. title: ' K'
  452. weight: '400'
  453. width: 73
  454. 411-RTY-1-1002:
  455. background_color: rgba(0, 0, 0, 0)
  456. decimal: '2'
  457. exponential: 'false'
  458. formula: ''
  459. header:
  460. size: 16
  461. title: ' '
  462. weight: '400'
  463. height: 21
  464. larger: ''
  465. left: 275px
  466. lesser: ''
  467. linkhtml: 'true'
  468. ref: 411-RTY-1-1002
  469. top: 573px
  470. trend: 'true'
  471. type: data
  472. unit:
  473. size: 16
  474. title: ' K'
  475. weight: '400'
  476. width: 73
  477. 411-RTY-1-1003:
  478. background_color: rgba(0, 0, 0, 0)
  479. decimal: '2'
  480. exponential: 'false'
  481. formula: ''
  482. header:
  483. size: 16
  484. title: ' '
  485. weight: '400'
  486. height: 24
  487. larger: ''
  488. left: 278px
  489. lesser: ''
  490. linkhtml: 'true'
  491. ref: 411-RTY-1-1003
  492. top: 391px
  493. trend: 'true'
  494. type: data
  495. unit:
  496. size: 16
  497. title: ' K'
  498. weight: '400'
  499. width: 75
  500. 411-RTY-1-1004:
  501. background_color: rgba(0, 0, 0, 0)
  502. decimal: '2'
  503. exponential: 'false'
  504. formula: ''
  505. header:
  506. size: 16
  507. title: ' '
  508. weight: '400'
  509. height: 24
  510. larger: ''
  511. left: 335px
  512. lesser: ''
  513. linkhtml: 'true'
  514. ref: 411-RTY-1-1004
  515. top: 507px
  516. trend: 'true'
  517. type: data
  518. unit:
  519. size: 16
  520. title: ' K'
  521. weight: '400'
  522. width: 70
  523. 411-RTY-1-1005:
  524. background_color: rgba(0, 0, 0, 0)
  525. decimal: '2'
  526. exponential: 'false'
  527. formula: ''
  528. header:
  529. size: 16
  530. title: ' '
  531. weight: '400'
  532. height: 22
  533. larger: ''
  534. left: 301px
  535. lesser: ''
  536. linkhtml: 'true'
  537. ref: 411-RTY-1-1005
  538. top: 624px
  539. trend: 'true'
  540. type: data
  541. unit:
  542. size: 16
  543. title: ' K'
  544. weight: '400'
  545. width: 71
  546. 411-RTY-1-1006:
  547. background_color: rgba(0, 0, 0, 0)
  548. decimal: '1'
  549. exponential: 'false'
  550. formula: ''
  551. header:
  552. size: 16
  553. title: ' '
  554. weight: '400'
  555. height: 24
  556. larger: ''
  557. left: 237px
  558. lesser: ''
  559. linkhtml: 'true'
  560. ref: 411-RTY-1-1006
  561. top: 689px
  562. trend: 'true'
  563. type: data
  564. unit:
  565. size: 16
  566. title: ' K'
  567. weight: '400'
  568. width: 76
  569. 411-RTY-1-1007:
  570. background_color: rgba(0, 0, 0, 0)
  571. decimal: '2'
  572. exponential: 'false'
  573. formula: ''
  574. header:
  575. size: 16
  576. title: 'SW: '
  577. weight: '400'
  578. height: 22
  579. larger: ''
  580. left: 149px
  581. lesser: ''
  582. linkhtml: 'true'
  583. ref: 411-RTY-1-1007
  584. top: 622px
  585. trend: 'true'
  586. type: data
  587. unit:
  588. size: 16
  589. title: ' K'
  590. weight: '400'
  591. width: 103
  592. 411-RTY-1-2001:
  593. background_color: rgba(0, 0, 0, 0)
  594. decimal: '2'
  595. exponential: 'false'
  596. formula: ''
  597. header:
  598. size: 16
  599. title: ' '
  600. weight: '400'
  601. height: 22
  602. larger: ''
  603. left: 719px
  604. lesser: ''
  605. linkhtml: 'true'
  606. ref: 411-RTY-1-2001
  607. top: 474px
  608. trend: 'true'
  609. type: data
  610. unit:
  611. size: 16
  612. title: ' K'
  613. weight: '400'
  614. width: 79
  615. 411-RTY-1-2002:
  616. background_color: rgba(0, 0, 0, 0)
  617. decimal: '2'
  618. exponential: 'false'
  619. formula: ''
  620. header:
  621. size: 16
  622. title: ' '
  623. weight: '400'
  624. height: 22
  625. larger: ''
  626. left: 725px
  627. lesser: ''
  628. linkhtml: 'true'
  629. ref: 411-RTY-1-2002
  630. top: 572px
  631. trend: 'true'
  632. type: data
  633. unit:
  634. size: 16
  635. title: ' K'
  636. weight: '400'
  637. width: 76
  638. 411-RTY-1-2003:
  639. background_color: rgba(0, 0, 0, 0)
  640. decimal: '2'
  641. exponential: 'false'
  642. formula: ''
  643. header:
  644. size: 16
  645. title: ' '
  646. weight: '400'
  647. height: 24
  648. larger: ''
  649. left: 727px
  650. lesser: ''
  651. linkhtml: 'true'
  652. ref: 411-RTY-1-2003
  653. top: 391px
  654. trend: 'true'
  655. type: data
  656. unit:
  657. size: 16
  658. title: ' K'
  659. weight: '400'
  660. width: 80
  661. 411-RTY-1-2004:
  662. background_color: rgba(0, 0, 0, 0)
  663. decimal: '2'
  664. exponential: 'false'
  665. formula: ''
  666. header:
  667. size: 16
  668. title: ' '
  669. weight: '400'
  670. height: 21
  671. larger: ''
  672. left: 785px
  673. lesser: ''
  674. linkhtml: 'true'
  675. ref: 411-RTY-1-2004
  676. top: 509px
  677. trend: 'true'
  678. type: data
  679. unit:
  680. size: 16
  681. title: ' K'
  682. weight: '400'
  683. width: 75
  684. 411-RTY-1-2005:
  685. background_color: rgba(0, 0, 0, 0)
  686. decimal: '2'
  687. exponential: 'false'
  688. formula: ''
  689. header:
  690. size: 16
  691. title: ' '
  692. weight: '400'
  693. height: 23
  694. larger: ''
  695. left: 744px
  696. lesser: ''
  697. linkhtml: 'true'
  698. ref: 411-RTY-1-2005
  699. top: 627px
  700. trend: 'true'
  701. type: data
  702. unit:
  703. size: 16
  704. title: ' K'
  705. weight: '400'
  706. width: 74
  707. 411-RTY-1-2006:
  708. background_color: rgba(0, 0, 0, 0)
  709. decimal: '1'
  710. exponential: 'false'
  711. formula: ''
  712. header:
  713. size: 16
  714. title: ' '
  715. weight: '400'
  716. height: 24
  717. larger: ''
  718. left: 687px
  719. lesser: ''
  720. linkhtml: 'true'
  721. ref: 411-RTY-1-2006
  722. top: 689px
  723. trend: 'true'
  724. type: data
  725. unit:
  726. size: 16
  727. title: ' K'
  728. weight: '400'
  729. width: 74
  730. 411-RTY-1-2007:
  731. background_color: rgba(0, 0, 0, 0)
  732. decimal: '2'
  733. exponential: 'false'
  734. formula: ''
  735. header:
  736. size: 16
  737. title: 'SW: '
  738. weight: '400'
  739. height: 23
  740. larger: ''
  741. left: 599px
  742. lesser: ''
  743. linkhtml: 'true'
  744. ref: 411-RTY-1-2007
  745. top: 625px
  746. trend: 'true'
  747. type: data
  748. unit:
  749. size: 16
  750. title: ' K'
  751. weight: '400'
  752. width: 99
  753. 411-VAO-1-1450:
  754. background_color: rgba(0, 0, 0, 0)
  755. height: 23
  756. icon: valve
  757. left: 439px
  758. linkhtml: 'true'
  759. 'off': '0'
  760. off_condition: offequal
  761. 'on': '1'
  762. on_condition: onequal
  763. ref: 411-VAO-1-1450
  764. rotate: matrix(0, 1, -1, 0, 0, 0)
  765. top: 1037px
  766. trend: 'false'
  767. type: icon
  768. width: 23
  769. 521-ELV-0-1205:
  770. background_color: rgba(0, 0, 0, 0)
  771. decimal: '2'
  772. exponential: 'false'
  773. formula: ''
  774. header:
  775. size: 16
  776. title: ' '
  777. weight: '700'
  778. height: 21
  779. larger: ''
  780. left: 1204px
  781. lesser: ''
  782. linkhtml: 'true'
  783. ref: 521-ELV-0-1205
  784. top: 883px
  785. trend: 'true'
  786. type: data
  787. unit:
  788. size: 16
  789. title: ' A'
  790. weight: '700'
  791. width: 81
  792. 521-ELV-0-1205-0101:
  793. background_color: rgba(0, 0, 0, 0)
  794. decimal: '2'
  795. exponential: 'false'
  796. formula: ''
  797. header:
  798. size: 16
  799. title: ' '
  800. weight: '400'
  801. height: 24
  802. larger: ''
  803. left: 1206px
  804. lesser: ''
  805. linkhtml: 'true'
  806. ref: 521-ELV-0-1205-0101
  807. top: 913px
  808. trend: 'true'
  809. type: data
  810. unit:
  811. size: 16
  812. title: ' V'
  813. weight: '400'
  814. width: 81
  815. 521-ELV-0-2205:
  816. background_color: rgba(0, 0, 0, 0)
  817. decimal: '2'
  818. exponential: 'false'
  819. formula: ''
  820. header:
  821. size: 16
  822. title: ' '
  823. weight: '700'
  824. height: 25
  825. larger: ''
  826. left: 1650px
  827. lesser: ''
  828. linkhtml: 'true'
  829. ref: 521-ELV-0-2205
  830. top: 880px
  831. trend: 'true'
  832. type: data
  833. unit:
  834. size: 16
  835. title: ' A'
  836. weight: '700'
  837. width: 79
  838. 521-ELV-0-2205-0101:
  839. background_color: rgba(0, 0, 0, 0)
  840. decimal: '2'
  841. exponential: 'false'
  842. formula: ''
  843. header:
  844. size: 16
  845. title: ' '
  846. weight: '400'
  847. height: 23
  848. larger: ''
  849. left: 1651px
  850. lesser: ''
  851. linkhtml: 'true'
  852. ref: 521-ELV-0-2205-0101
  853. top: 916px
  854. trend: 'true'
  855. type: data
  856. unit:
  857. size: 16
  858. title: ' V'
  859. weight: '400'
  860. width: 80
  861. 521-HEE-0-1221:
  862. background_color: rgba(0, 0, 0, 0)
  863. decimal: '0'
  864. exponential: 'false'
  865. formula: ''
  866. header:
  867. size: 16
  868. title: 'SW? '
  869. weight: '400'
  870. height: 21
  871. larger: ''
  872. left: 1199px
  873. lesser: ''
  874. linkhtml: 'true'
  875. ref: 521-HEE-0-1221
  876. top: 767px
  877. trend: 'true'
  878. type: data
  879. unit:
  880. size: 16
  881. title: ' '
  882. weight: '400'
  883. width: 91
  884. 521-HEE-0-1245:
  885. background_color: rgba(0, 0, 0, 0)
  886. decimal: '2'
  887. exponential: 'false'
  888. formula: ''
  889. header:
  890. size: 16
  891. title: 'HRC: '
  892. weight: '400'
  893. height: 24
  894. larger: ''
  895. left: 1333px
  896. lesser: ''
  897. linkhtml: 'true'
  898. ref: 521-HEE-0-1245
  899. top: 341px
  900. trend: 'true'
  901. type: data
  902. unit:
  903. size: 16
  904. title: ' W'
  905. weight: '400'
  906. width: 116
  907. 521-HEE-0-2221:
  908. background_color: rgba(0, 0, 0, 0)
  909. decimal: '0'
  910. exponential: 'false'
  911. formula: ''
  912. header:
  913. size: 16
  914. title: 'SW? '
  915. weight: '400'
  916. height: 21
  917. larger: ''
  918. left: 1645px
  919. lesser: ''
  920. linkhtml: 'true'
  921. ref: 521-HEE-0-2221
  922. top: 766px
  923. trend: 'true'
  924. type: data
  925. unit:
  926. size: 16
  927. title: ' '
  928. weight: '400'
  929. width: 93
  930. 521-HEE-0-2245:
  931. background_color: rgba(0, 0, 0, 0)
  932. decimal: '2'
  933. exponential: 'false'
  934. formula: ''
  935. header:
  936. size: 16
  937. title: 'HRC: '
  938. weight: '400'
  939. height: 24
  940. larger: ''
  941. left: 1783px
  942. lesser: ''
  943. linkhtml: 'true'
  944. ref: 521-HEE-0-2245
  945. top: 344px
  946. trend: 'true'
  947. type: data
  948. unit:
  949. size: 16
  950. title: ' W'
  951. weight: '400'
  952. width: 115
  953. 521-RBY-0-1275-0001:
  954. background_color: rgba(0, 0, 0, 0)
  955. decimal: '3'
  956. exponential: 'false'
  957. formula: ''
  958. header:
  959. size: 16
  960. title: ' '
  961. weight: '400'
  962. height: 25
  963. larger: ''
  964. left: 1087px
  965. lesser: ''
  966. linkhtml: 'true'
  967. ref: 521-RBY-0-1275-0001
  968. top: 881px
  969. trend: 'true'
  970. type: data
  971. unit:
  972. size: 16
  973. title: ' T'
  974. weight: '400'
  975. width: 75
  976. 521-RBY-0-1275-0002:
  977. background_color: rgba(0, 0, 0, 0)
  978. decimal: '3'
  979. exponential: 'false'
  980. formula: ''
  981. header:
  982. size: 16
  983. title: ' '
  984. weight: '400'
  985. height: 21
  986. larger: ''
  987. left: 1326px
  988. lesser: ''
  989. linkhtml: 'true'
  990. ref: 521-RBY-0-1275-0002
  991. top: 883px
  992. trend: 'true'
  993. type: data
  994. unit:
  995. size: 16
  996. title: ' T'
  997. weight: '400'
  998. width: 76
  999. 521-RBY-0-2275-0001:
  1000. background_color: rgba(0, 0, 0, 0)
  1001. decimal: '3'
  1002. exponential: 'false'
  1003. formula: ''
  1004. header:
  1005. size: 16
  1006. title: ' '
  1007. weight: '400'
  1008. height: 25
  1009. larger: ''
  1010. left: 1538px
  1011. lesser: ''
  1012. linkhtml: 'true'
  1013. ref: 521-RBY-0-2275-0001
  1014. top: 881px
  1015. trend: 'true'
  1016. type: data
  1017. unit:
  1018. size: 16
  1019. title: ' T'
  1020. weight: '400'
  1021. width: 86
  1022. 521-RBY-0-2275-0002:
  1023. background_color: rgba(0, 0, 0, 0)
  1024. decimal: '3'
  1025. exponential: 'false'
  1026. formula: ''
  1027. header:
  1028. size: 16
  1029. title: ' '
  1030. weight: '400'
  1031. height: 26
  1032. larger: ''
  1033. left: 1758px
  1034. lesser: ''
  1035. linkhtml: 'true'
  1036. ref: 521-RBY-0-2275-0002
  1037. top: 880px
  1038. trend: 'true'
  1039. type: data
  1040. unit:
  1041. size: 16
  1042. title: ' T'
  1043. weight: '400'
  1044. width: 73
  1045. 521-RLY-0-1225:
  1046. background_color: rgba(0, 0, 0, 0)
  1047. decimal: '1'
  1048. exponential: 'false'
  1049. formula: ''
  1050. header:
  1051. size: 16
  1052. title: 'LHe: '
  1053. weight: '700'
  1054. height: 22
  1055. larger: ''
  1056. left: 1237px
  1057. lesser: ''
  1058. linkhtml: 'true'
  1059. ref: 521-RLY-0-1225
  1060. top: 609px
  1061. trend: 'true'
  1062. type: data
  1063. unit:
  1064. size: 16
  1065. title: ' %'
  1066. weight: '700'
  1067. width: 124
  1068. 521-RLY-0-2225:
  1069. background_color: rgba(0, 0, 0, 0)
  1070. decimal: '1'
  1071. exponential: 'false'
  1072. formula: ''
  1073. header:
  1074. size: 16
  1075. title: 'LHe: '
  1076. weight: '700'
  1077. height: 25
  1078. larger: ''
  1079. left: 1690px
  1080. lesser: ''
  1081. linkhtml: 'true'
  1082. ref: 521-RLY-0-2225
  1083. top: 605px
  1084. trend: 'true'
  1085. type: data
  1086. unit:
  1087. size: 16
  1088. title: ' %'
  1089. weight: '700'
  1090. width: 118
  1091. 521-RPY-0-1240:
  1092. background_color: rgba(0, 0, 0, 0)
  1093. decimal: '2'
  1094. exponential: 'false'
  1095. formula: ''
  1096. header:
  1097. size: 16
  1098. title: 'P: '
  1099. weight: '400'
  1100. height: 21
  1101. larger: ''
  1102. left: 1335px
  1103. lesser: ''
  1104. linkhtml: 'true'
  1105. ref: 521-RPY-0-1240
  1106. top: 313px
  1107. trend: 'true'
  1108. type: data
  1109. unit:
  1110. size: 16
  1111. title: ' psi'
  1112. weight: '400'
  1113. width: 113
  1114. 521-RPY-0-2240:
  1115. background_color: rgba(0, 0, 0, 0)
  1116. decimal: '2'
  1117. exponential: 'false'
  1118. formula: ''
  1119. header:
  1120. size: 16
  1121. title: 'P: '
  1122. weight: '400'
  1123. height: 22
  1124. larger: ''
  1125. left: 1785px
  1126. lesser: ''
  1127. linkhtml: 'true'
  1128. ref: 521-RPY-0-2240
  1129. top: 313px
  1130. trend: 'true'
  1131. type: data
  1132. unit:
  1133. size: 16
  1134. title: ' psi'
  1135. weight: '400'
  1136. width: 106
  1137. 521-RTP-0-1211:
  1138. background_color: rgba(0, 0, 0, 0)
  1139. decimal: '2'
  1140. exponential: 'false'
  1141. formula: ''
  1142. header:
  1143. size: 16
  1144. title: ' '
  1145. weight: '400'
  1146. height: 22
  1147. larger: ''
  1148. left: 1241px
  1149. lesser: ''
  1150. linkhtml: 'true'
  1151. ref: 521-RTP-0-1211
  1152. top: 393px
  1153. trend: 'true'
  1154. type: data
  1155. unit:
  1156. size: 16
  1157. title: ' K'
  1158. weight: '400'
  1159. width: 71
  1160. 521-RTP-0-1214:
  1161. background_color: rgba(0, 0, 0, 0)
  1162. decimal: '2'
  1163. exponential: 'false'
  1164. formula: ''
  1165. header:
  1166. size: 16
  1167. title: ' '
  1168. weight: '400'
  1169. height: 24
  1170. larger: ''
  1171. left: 1244px
  1172. lesser: ''
  1173. linkhtml: 'true'
  1174. ref: 521-RTP-0-1214
  1175. top: 472px
  1176. trend: 'true'
  1177. type: data
  1178. unit:
  1179. size: 16
  1180. title: ' K'
  1181. weight: '400'
  1182. width: 73
  1183. 521-RTP-0-1217:
  1184. background_color: rgba(0, 0, 0, 0)
  1185. decimal: '1'
  1186. exponential: 'false'
  1187. formula: ''
  1188. header:
  1189. size: 16
  1190. title: ' '
  1191. weight: '400'
  1192. height: 21
  1193. larger: ''
  1194. left: 1154px
  1195. lesser: ''
  1196. linkhtml: 'true'
  1197. ref: 521-RTP-0-1217
  1198. top: 713px
  1199. trend: 'true'
  1200. type: data
  1201. unit:
  1202. size: 16
  1203. title: ' K'
  1204. weight: '400'
  1205. width: 74
  1206. 521-RTP-0-1218:
  1207. background_color: rgba(0, 0, 0, 0)
  1208. decimal: '1'
  1209. exponential: 'false'
  1210. formula: ''
  1211. header:
  1212. size: 16
  1213. title: ' '
  1214. weight: '400'
  1215. height: 21
  1216. larger: ''
  1217. left: 1254px
  1218. lesser: ''
  1219. linkhtml: 'true'
  1220. ref: 521-RTP-0-1218
  1221. top: 713px
  1222. trend: 'true'
  1223. type: data
  1224. unit:
  1225. size: 16
  1226. title: ' K'
  1227. weight: '400'
  1228. width: 75
  1229. 521-RTP-0-2211:
  1230. background_color: rgba(0, 0, 0, 0)
  1231. decimal: '2'
  1232. exponential: 'false'
  1233. formula: ''
  1234. header:
  1235. size: 16
  1236. title: ' '
  1237. weight: '400'
  1238. height: 23
  1239. larger: ''
  1240. left: 1689px
  1241. lesser: ''
  1242. linkhtml: 'true'
  1243. ref: 521-RTP-0-2211
  1244. top: 391px
  1245. trend: 'true'
  1246. type: data
  1247. unit:
  1248. size: 16
  1249. title: ' K'
  1250. weight: '400'
  1251. width: 70
  1252. 521-RTP-0-2214:
  1253. background_color: rgba(0, 0, 0, 0)
  1254. decimal: '2'
  1255. exponential: 'false'
  1256. formula: ''
  1257. header:
  1258. size: 16
  1259. title: ' '
  1260. weight: '400'
  1261. height: 20
  1262. larger: ''
  1263. left: 1693px
  1264. lesser: ''
  1265. linkhtml: 'true'
  1266. ref: 521-RTP-0-2214
  1267. top: 475px
  1268. trend: 'true'
  1269. type: data
  1270. unit:
  1271. size: 16
  1272. title: ' K'
  1273. weight: '400'
  1274. width: 70
  1275. 521-RTP-0-2217:
  1276. background_color: rgba(0, 0, 0, 0)
  1277. decimal: '1'
  1278. exponential: 'false'
  1279. formula: ''
  1280. header:
  1281. size: 16
  1282. title: ' '
  1283. weight: '400'
  1284. height: 21
  1285. larger: ''
  1286. left: 1604px
  1287. lesser: ''
  1288. linkhtml: 'true'
  1289. ref: 521-RTP-0-2217
  1290. top: 713px
  1291. trend: 'true'
  1292. type: data
  1293. unit:
  1294. size: 16
  1295. title: ' K'
  1296. weight: '400'
  1297. width: 77
  1298. 521-RTP-0-2218:
  1299. background_color: rgba(0, 0, 0, 0)
  1300. decimal: '1'
  1301. exponential: 'false'
  1302. formula: ''
  1303. header:
  1304. size: 16
  1305. title: ' '
  1306. weight: '400'
  1307. height: 21
  1308. larger: ''
  1309. left: 1704px
  1310. lesser: ''
  1311. linkhtml: 'true'
  1312. ref: 521-RTP-0-2218
  1313. top: 713px
  1314. trend: 'true'
  1315. type: data
  1316. unit:
  1317. size: 16
  1318. title: ' K'
  1319. weight: '400'
  1320. width: 76
  1321. 521-RTY-0-1212:
  1322. background_color: rgba(0, 0, 0, 0)
  1323. decimal: '2'
  1324. exponential: 'false'
  1325. formula: ''
  1326. header:
  1327. size: 16
  1328. title: ' '
  1329. weight: '400'
  1330. height: 21
  1331. larger: ''
  1332. left: 1239px
  1333. lesser: ''
  1334. linkhtml: 'true'
  1335. ref: 521-RTY-0-1212
  1336. top: 530px
  1337. trend: 'true'
  1338. type: data
  1339. unit:
  1340. size: 16
  1341. title: ' K'
  1342. weight: '400'
  1343. width: 73
  1344. 521-RTY-0-1215:
  1345. background_color: rgba(0, 0, 0, 0)
  1346. decimal: '1'
  1347. exponential: 'false'
  1348. formula: ''
  1349. header:
  1350. size: 16
  1351. title: ' '
  1352. weight: '400'
  1353. height: 21
  1354. larger: ''
  1355. left: 1250px
  1356. lesser: ''
  1357. linkhtml: 'true'
  1358. ref: 521-RTY-0-1215
  1359. top: 573px
  1360. trend: 'true'
  1361. type: data
  1362. unit:
  1363. size: 16
  1364. title: ' K'
  1365. weight: '400'
  1366. width: 75
  1367. 521-RTY-0-2212:
  1368. background_color: rgba(0, 0, 0, 0)
  1369. decimal: '2'
  1370. exponential: 'false'
  1371. formula: ''
  1372. header:
  1373. size: 16
  1374. title: ' '
  1375. weight: '400'
  1376. height: 21
  1377. larger: ''
  1378. left: 1692px
  1379. lesser: ''
  1380. linkhtml: 'true'
  1381. ref: 521-RTY-0-2212
  1382. top: 533px
  1383. trend: 'true'
  1384. type: data
  1385. unit:
  1386. size: 16
  1387. title: ' K'
  1388. weight: '400'
  1389. width: 72
  1390. 521-RTY-0-2215:
  1391. background_color: rgba(0, 0, 0, 0)
  1392. decimal: '1'
  1393. exponential: 'false'
  1394. formula: ''
  1395. header:
  1396. size: 16
  1397. title: ' '
  1398. weight: '400'
  1399. height: 21
  1400. larger: ''
  1401. left: 1701px
  1402. lesser: ''
  1403. linkhtml: 'true'
  1404. ref: 521-RTY-0-2215
  1405. top: 573px
  1406. trend: 'true'
  1407. type: data
  1408. unit:
  1409. size: 16
  1410. title: ' K'
  1411. weight: '400'
  1412. width: 69
  1413. 535-RFY-0-1030-0002:
  1414. background_color: rgba(0, 0, 0, 0)
  1415. decimal: '1'
  1416. exponential: 'false'
  1417. formula: ''
  1418. header:
  1419. size: 14
  1420. title: 'W.flow1: '
  1421. weight: '400'
  1422. height: 18
  1423. larger: '12'
  1424. left: 1536px
  1425. lesser: '6'
  1426. linkhtml: 'true'
  1427. ref: 535-RFY-0-1030-0002
  1428. top: 234px
  1429. trend: 'true'
  1430. type: data
  1431. unit:
  1432. size: 14
  1433. title: ' L/min'
  1434. weight: '400'
  1435. width: 168
  1436. 535-RFY-0-1030-0003:
  1437. background_color: rgba(0, 0, 0, 0)
  1438. decimal: '1'
  1439. exponential: 'false'
  1440. formula: ''
  1441. header:
  1442. size: 14
  1443. title: 'W.flow.spare: '
  1444. weight: '400'
  1445. height: 20
  1446. larger: '12'
  1447. left: 1318px
  1448. lesser: '6'
  1449. linkhtml: 'true'
  1450. ref: 535-RFY-0-1030-0003
  1451. top: 236px
  1452. trend: 'true'
  1453. type: data
  1454. unit:
  1455. size: 14
  1456. title: ' L/min'
  1457. weight: '400'
  1458. width: 196
  1459. 535-RFY-0-1030-0004:
  1460. background_color: rgba(0, 0, 0, 0)
  1461. decimal: '1'
  1462. exponential: 'false'
  1463. formula: ''
  1464. header:
  1465. size: 14
  1466. title: 'W.flow3: '
  1467. weight: '400'
  1468. height: 18
  1469. larger: '12'
  1470. left: 1080px
  1471. lesser: '6'
  1472. linkhtml: 'true'
  1473. ref: 535-RFY-0-1030-0004
  1474. top: 236px
  1475. trend: 'true'
  1476. type: data
  1477. unit:
  1478. size: 14
  1479. title: ' L/min'
  1480. weight: '400'
  1481. width: 156
  1482. 535-RFY-0-1030-0005:
  1483. background_color: rgba(0, 0, 0, 0)
  1484. decimal: '1'
  1485. exponential: 'false'
  1486. formula: ''
  1487. header:
  1488. size: 14
  1489. title: 'W.flow.Heat-pipe: '
  1490. weight: '400'
  1491. height: 18
  1492. larger: '5'
  1493. left: 1374px
  1494. lesser: '1.5'
  1495. linkhtml: 'true'
  1496. ref: 535-RFY-0-1030-0005
  1497. top: 98px
  1498. trend: 'true'
  1499. type: data
  1500. unit:
  1501. size: 14
  1502. title: ' L/min'
  1503. weight: '400'
  1504. width: 220
  1505. 535-RFY-0-1030-0006:
  1506. background_color: rgba(0, 0, 0, 0)
  1507. decimal: '1'
  1508. exponential: 'false'
  1509. formula: ''
  1510. header:
  1511. size: 14
  1512. title: 'W.flow.cryopump: '
  1513. weight: '400'
  1514. height: 18
  1515. larger: '9'
  1516. left: 1598px
  1517. lesser: '5'
  1518. linkhtml: 'true'
  1519. ref: 535-RFY-0-1030-0006
  1520. top: 98px
  1521. trend: 'true'
  1522. type: data
  1523. unit:
  1524. size: 14
  1525. title: ' L/min'
  1526. weight: '400'
  1527. width: 218
  1528. 535-RTY-0-1020:
  1529. background_color: rgba(0, 0, 0, 0)
  1530. decimal: '1'
  1531. exponential: 'false'
  1532. formula: ''
  1533. header:
  1534. size: 16
  1535. title: 'Cooling water: '
  1536. weight: '400'
  1537. height: 23
  1538. larger: '21'
  1539. left: 1643px
  1540. lesser: '5'
  1541. linkhtml: 'true'
  1542. ref: 535-RTY-0-1020
  1543. top: 38px
  1544. trend: 'true'
  1545. type: data
  1546. unit:
  1547. size: 16
  1548. title: ' °C'
  1549. weight: '400'
  1550. width: 193
  1551. DET-hall_535-RPY-0-1005:
  1552. background_color: rgba(0, 0, 0, 0)
  1553. decimal: '2'
  1554. exponential: 'false'
  1555. formula: ''
  1556. header:
  1557. size: 16
  1558. title: 'pressure: '
  1559. weight: '400'
  1560. height: 26
  1561. larger: ''
  1562. left: 1451px
  1563. lesser: '14'
  1564. linkhtml: 'true'
  1565. ref: DET-hall_535-RPY-0-1005
  1566. top: 14px
  1567. trend: 'true'
  1568. type: data
  1569. unit:
  1570. size: 16
  1571. title: ' psi'
  1572. weight: '400'
  1573. width: 171
  1574. DET-hall_535-RTY-0-1010:
  1575. background_color: rgba(0, 0, 0, 0)
  1576. decimal: '1'
  1577. exponential: 'false'
  1578. formula: ''
  1579. header:
  1580. size: 16
  1581. title: 'temperature: '
  1582. weight: '400'
  1583. height: 23
  1584. larger: '25'
  1585. left: 1449px
  1586. lesser: '14'
  1587. linkhtml: 'true'
  1588. ref: DET-hall_535-RTY-0-1010
  1589. top: 68px
  1590. trend: 'true'
  1591. type: data
  1592. unit:
  1593. size: 16
  1594. title: ' °C'
  1595. weight: '400'
  1596. width: 190
  1597. DET-hall_rel-Humility_535-RMY-0-1015:
  1598. background_color: rgba(0, 0, 0, 0)
  1599. decimal: '1'
  1600. exponential: 'false'
  1601. formula: ''
  1602. header:
  1603. size: 16
  1604. title: 'rel. humility: '
  1605. weight: '400'
  1606. height: 23
  1607. larger: '65'
  1608. left: 1451px
  1609. lesser: '20'
  1610. linkhtml: 'true'
  1611. ref: DET-hall_rel-Humility_535-RMY-0-1015
  1612. top: 44px
  1613. trend: 'true'
  1614. type: data
  1615. unit:
  1616. size: 16
  1617. title: ' %'
  1618. weight: '400'
  1619. width: 173
  1620. DM-Comp-error-code:
  1621. background_color: rgba(0, 0, 0, 0)
  1622. decimal: '1'
  1623. exponential: 'false'
  1624. formula: ''
  1625. header:
  1626. size: 14
  1627. title: 'error? '
  1628. weight: '400'
  1629. height: 36
  1630. larger: '0.1'
  1631. left: 1565px
  1632. lesser: ''
  1633. linkhtml: 'true'
  1634. ref: DM-Comp-error-code
  1635. top: 331px
  1636. trend: 'true'
  1637. type: data
  1638. unit:
  1639. size: 14
  1640. title: ' '
  1641. weight: '400'
  1642. width: 66
  1643. DM-He-temp:
  1644. background_color: rgba(0, 0, 0, 0)
  1645. decimal: '1'
  1646. exponential: 'false'
  1647. formula: ''
  1648. header:
  1649. size: 14
  1650. title: 'T-He: '
  1651. weight: '400'
  1652. height: 19
  1653. larger: '80'
  1654. left: 1673px
  1655. lesser: ''
  1656. linkhtml: 'true'
  1657. ref: DM-He-temp
  1658. top: 315px
  1659. trend: 'true'
  1660. type: data
  1661. unit:
  1662. size: 14
  1663. title: ' °C'
  1664. weight: '400'
  1665. width: 106
  1666. DM-Oil-temp:
  1667. background_color: rgba(0, 0, 0, 0)
  1668. decimal: '1'
  1669. exponential: 'false'
  1670. formula: ''
  1671. header:
  1672. size: 14
  1673. title: 'T-Oil: '
  1674. weight: '400'
  1675. height: 19
  1676. larger: '40'
  1677. left: 1673px
  1678. lesser: '28.5'
  1679. linkhtml: 'true'
  1680. ref: DM-Oil-temp
  1681. top: 335px
  1682. trend: 'true'
  1683. type: data
  1684. unit:
  1685. size: 14
  1686. title: ' °C'
  1687. weight: '400'
  1688. width: 102
  1689. DM_Voeglin_inflow_521-RFY-1-2300-0012:
  1690. background_color: rgba(0, 0, 0, 0)
  1691. decimal: '1'
  1692. exponential: 'false'
  1693. formula: ''
  1694. header:
  1695. size: 14
  1696. title: 'Voegtlin-flow: '
  1697. weight: '400'
  1698. height: 19
  1699. larger: ''
  1700. left: 1686px
  1701. lesser: ''
  1702. linkhtml: 'true'
  1703. ref: DM_Voeglin_inflow_521-RFY-1-2300-0012
  1704. top: 202px
  1705. trend: 'true'
  1706. type: data
  1707. unit:
  1708. size: 14
  1709. title: ' L/min'
  1710. weight: '400'
  1711. width: 194
  1712. Detector-Compressor:
  1713. background_color: rgba(0, 0, 0, 0)
  1714. decimal: '0'
  1715. exponential: 'false'
  1716. formula: ''
  1717. header:
  1718. size: 16
  1719. title: 'ON? '
  1720. weight: '400'
  1721. height: 26
  1722. larger: ''
  1723. left: 1609px
  1724. lesser: '0.5'
  1725. linkhtml: 'true'
  1726. ref: Detector-Compressor
  1727. top: 306px
  1728. trend: 'true'
  1729. type: data
  1730. unit:
  1731. size: 16
  1732. title: ' '
  1733. weight: '400'
  1734. width: 60
  1735. PM-Comp-error-code:
  1736. background_color: rgba(0, 0, 0, 0)
  1737. decimal: '1'
  1738. exponential: 'false'
  1739. formula: ''
  1740. header:
  1741. size: 14
  1742. title: 'error? '
  1743. weight: '400'
  1744. height: 38
  1745. larger: '0.1'
  1746. left: 1119px
  1747. lesser: ''
  1748. linkhtml: 'true'
  1749. ref: PM-Comp-error-code
  1750. top: 329px
  1751. trend: 'true'
  1752. type: data
  1753. unit:
  1754. size: 14
  1755. title: ' '
  1756. weight: '400'
  1757. width: 69
  1758. PM-He-temp:
  1759. background_color: rgba(0, 0, 0, 0)
  1760. decimal: '1'
  1761. exponential: 'false'
  1762. formula: ''
  1763. header:
  1764. size: 14
  1765. title: 'T-He: '
  1766. weight: '400'
  1767. height: 19
  1768. larger: '80'
  1769. left: 1220px
  1770. lesser: ''
  1771. linkhtml: 'true'
  1772. ref: PM-He-temp
  1773. top: 312px
  1774. trend: 'true'
  1775. type: data
  1776. unit:
  1777. size: 14
  1778. title: ' °C'
  1779. weight: '400'
  1780. width: 108
  1781. PM-Oil-temp:
  1782. background_color: rgba(0, 0, 0, 0)
  1783. decimal: '1'
  1784. exponential: 'false'
  1785. formula: ''
  1786. header:
  1787. size: 14
  1788. title: 'T-Oil: '
  1789. weight: '400'
  1790. height: 20
  1791. larger: '40'
  1792. left: 1219px
  1793. lesser: '23'
  1794. linkhtml: 'true'
  1795. ref: PM-Oil-temp
  1796. top: 335px
  1797. trend: 'true'
  1798. type: data
  1799. unit:
  1800. size: 14
  1801. title: ' °C'
  1802. weight: '400'
  1803. width: 111
  1804. PM_Voeglin_inflow_521-RFY-1-1300-0012:
  1805. background_color: rgba(0, 0, 0, 0)
  1806. decimal: '1'
  1807. exponential: 'false'
  1808. formula: ''
  1809. header:
  1810. size: 14
  1811. title: 'Voegtlin-flow: '
  1812. weight: '400'
  1813. height: 19
  1814. larger: ''
  1815. left: 1209px
  1816. lesser: ''
  1817. linkhtml: 'true'
  1818. ref: PM_Voeglin_inflow_521-RFY-1-1300-0012
  1819. top: 203px
  1820. trend: 'true'
  1821. type: data
  1822. unit:
  1823. size: 14
  1824. title: ' L/min'
  1825. weight: '400'
  1826. width: 188
  1827. Pinch-Compressor:
  1828. background_color: rgba(0, 0, 0, 0)
  1829. decimal: '0'
  1830. exponential: 'false'
  1831. formula: ''
  1832. header:
  1833. size: 16
  1834. title: 'ON? '
  1835. weight: '400'
  1836. height: 24
  1837. larger: ''
  1838. left: 1159px
  1839. lesser: '0.5'
  1840. linkhtml: 'true'
  1841. ref: Pinch-Compressor
  1842. top: 305px
  1843. trend: 'true'
  1844. type: data
  1845. unit:
  1846. size: 16
  1847. title: ' '
  1848. weight: '400'
  1849. width: 59
  1850. ? calc_23731log10logdethallrelhumility535rmy0101510061078-1075dethall535rty010102373dethall535rty0101061078751log10logdethallrelhumility535rmy0101510061078-1075dethall535rty010102373dethall535rty0101061078
  1851. : background_color: rgba(0, 0, 0, 0)
  1852. decimal: '1'
  1853. formula: 237.3*(1/log(10)*log(([DET-hall_rel-Humility_535-RMY-0-1015]/100*(6.1078
  1854. * 10^((7.5*[DET-hall_535-RTY-0-1010])/(237.3+[DET-hall_535-RTY-0-1010]))))/6.1078))/(7.5-(1/log(10)*log(([DET-hall_rel-Humility_535-RMY-0-1015]/100*(6.1078
  1855. * 10^((7.5*[DET-hall_535-RTY-0-1010])/(237.3+[DET-hall_535-RTY-0-1010]))))/6.1078)))
  1856. header:
  1857. size: 16
  1858. title: 'dew point: '
  1859. weight: '400'
  1860. height: 25
  1861. larger: ''
  1862. left: 1645px
  1863. lesser: ''
  1864. ref: ''
  1865. top: 68px
  1866. type: calc
  1867. unit:
  1868. size: 16
  1869. title: ' °C'
  1870. weight: '400'
  1871. width: 175
  1872. header_detcomp:
  1873. background_color: rgba(0, 0, 0, 0)
  1874. header:
  1875. size: 18
  1876. title: 'DET-Comp. '
  1877. weight: '400'
  1878. height: 24
  1879. left: 1514px
  1880. titlelink: http://adei-katrin.kaas.kit.edu/adei/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=86400&module=graph&virtual=srctree&srctree=fpd__katrin_rep__2__58,fpd__katrin_rep__2__59,fpd__katrin_rep__2__60,fpd__katrin_rep__2__61,fpd__katrin_rep__2__62,fpd__katrin_rep__2__63,fpd__katrin_rep__2__64&bar_axis_range=0:0&K_axis_range=0:300&infomod=legend&history_id=1558684744199
  1881. top: 304px
  1882. type: header
  1883. width: 101
  1884. header_detector:
  1885. background_color: rgba(0, 0, 0, 0)
  1886. header:
  1887. size: 28
  1888. title: 'Detector '
  1889. weight: '700'
  1890. height: 39
  1891. left: 1575px
  1892. titlelink: http://adei-katrin.kaas.kit.edu/adei/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=86400&module=graph&virtual=srctree&srctree=fpd__katrin_rep__2__14,fpd__katrin_rep__2__16,fpd__katrin_rep__2__19,fpd__katrin_rep__2__20,fpd__katrin_rep__2__22,fpd__katrin_rep__2__24&bar_axis_range=0:0&K_axis_range=0:300&infomod=legend&history_id=1551773773068
  1893. top: 152px
  1894. type: header
  1895. width: 130
  1896. header_hall:
  1897. background_color: rgba(0, 0, 0, 0)
  1898. header:
  1899. size: 16
  1900. title: 'Hall: '
  1901. weight: '700'
  1902. height: 23
  1903. left: 1394px
  1904. top: 14px
  1905. type: header
  1906. width: 50
  1907. header_mcs:
  1908. background_color: rgba(0, 0, 0, 0)
  1909. header:
  1910. size: 18
  1911. title: 'MCS '
  1912. weight: '700'
  1913. height: 27
  1914. left: 19px
  1915. titlelink: http://bora-mcs.kaas.kit.edu/
  1916. top: 101px
  1917. type: header
  1918. width: 50
  1919. header_ms:
  1920. background_color: rgba(0, 0, 0, 0)
  1921. header:
  1922. size: 20
  1923. title: 'MS '
  1924. weight: '700'
  1925. height: 29
  1926. left: 950px
  1927. titlelink: https://status-sds.kaas.kit.edu/
  1928. top: 642px
  1929. type: header
  1930. width: 39
  1931. header_pchcomp:
  1932. background_color: rgba(0, 0, 0, 0)
  1933. header:
  1934. size: 18
  1935. title: 'PCH-Comp. '
  1936. weight: '400'
  1937. height: 24
  1938. left: 1059px
  1939. titlelink: http://adei-katrin.kaas.kit.edu/adei/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=86400&module=graph&virtual=srctree&srctree=fpd__katrin_rep__2__47,fpd__katrin_rep__2__48,fpd__katrin_rep__2__49,fpd__katrin_rep__2__50,fpd__katrin_rep__2__51,fpd__katrin_rep__2__52,fpd__katrin_rep__2__53&bar_axis_range=0:0&K_axis_range=0:300&infomod=legend&history_id=1558685077215
  1940. top: 304px
  1941. type: header
  1942. width: 100
  1943. header_pinch:
  1944. background_color: rgba(0, 0, 0, 0)
  1945. header:
  1946. size: 28
  1947. title: 'Pinch '
  1948. weight: '700'
  1949. height: 39
  1950. left: 1154px
  1951. titlelink: http://adei-katrin.kaas.kit.edu/adei/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=86400&module=graph&virtual=srctree&srctree=fpd__katrin_rep__2__13,fpd__katrin_rep__2__15,fpd__katrin_rep__2__17,fpd__katrin_rep__2__18,fpd__katrin_rep__2__21,fpd__katrin_rep__2__23&bar_axis_range=0:0&K_axis_range=0:300&infomod=legend&history_id=1551773718109
  1952. top: 158px
  1953. type: header
  1954. width: 84
  1955. header_ps1:
  1956. background_color: rgba(0, 0, 0, 0)
  1957. header:
  1958. size: 28
  1959. title: 'PS1: '
  1960. weight: '700'
  1961. height: 39
  1962. left: 194px
  1963. titlelink: http://adei-katrin.kaas.kit.edu/adei/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=86400&module=graph&virtual=srctree&srctree=csps__ControlSystem_PS__410KRYO_Magnete__27,csps__ControlSystem_PS__410KRYO_Magnete__30,csps__ControlSystem_PS__410KRYO_Magnete__33,csps__ControlSystem_PS__410KRYO_Magnete__36,csps__ControlSystem_PS__410KRYO_Magnete__39,csps__ControlSystem_PS__410KRYO_Magnete__42,csps__ControlSystem_PS__410KRYO_Magnete__45&bar_axis_range=0:0&K_axis_range=0:300&infomod=legend&history_id=1549366925791
  1964. top: 159px
  1965. type: header
  1966. width: 50
  1967. header_ps1comp:
  1968. background_color: rgba(0, 0, 0, 0)
  1969. header:
  1970. size: 18
  1971. title: 'PS1-Comp. '
  1972. weight: '400'
  1973. height: 24
  1974. left: 95px
  1975. titlelink: http://adei-katrin.kaas.kit.edu/adei/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=86400&module=graph&virtual=srctree&srctree=csps__ControlSystem_PS__410KRYO_Kuehlung__3,csps__ControlSystem_PS__410KRYO_Kuehlung__9,csps__ControlSystem_PS__410KRYO_Kuehlung__30,csps__ControlSystem_PS__410KRYO_Kuehlung__33&bar_axis_range=0:0&infomod=legend&history_id=1558686009260
  1976. top: 305px
  1977. type: header
  1978. width: 94
  1979. header_ps2:
  1980. background_color: rgba(0, 0, 0, 0)
  1981. header:
  1982. size: '28'
  1983. title: 'PS2:'
  1984. weight: '700'
  1985. height: 39
  1986. left: 638px
  1987. titlelink: http://adei-katrin.kaas.kit.edu/adei/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=86400&module=graph&virtual=srctree&srctree=csps__ControlSystem_PS__410KRYO_Magnete__48,csps__ControlSystem_PS__410KRYO_Magnete__51,csps__ControlSystem_PS__410KRYO_Magnete__54,csps__ControlSystem_PS__410KRYO_Magnete__57,csps__ControlSystem_PS__410KRYO_Magnete__60,csps__ControlSystem_PS__410KRYO_Magnete__63,csps__ControlSystem_PS__410KRYO_Magnete__66&bar_axis_range=0:0&K_axis_range=0:300&infomod=legend&history_id=1549367742464
  1988. top: 157px
  1989. type: header
  1990. width: 50
  1991. header_ps2comp:
  1992. background_color: rgba(0, 0, 0, 0)
  1993. header:
  1994. size: 18
  1995. title: 'PS2-Comp. '
  1996. weight: '400'
  1997. height: 26
  1998. left: 542px
  1999. titlelink: http://adei-katrin.kaas.kit.edu/adei/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=86400&module=graph&virtual=srctree&srctree=csps__ControlSystem_PS__410KRYO_Kuehlung__0,csps__ControlSystem_PS__410KRYO_Kuehlung__6,csps__ControlSystem_PS__410KRYO_Kuehlung__18,csps__ControlSystem_PS__410KRYO_Kuehlung__21&bar_axis_range=0:0&infomod=legend&history_id=1558685825992
  2000. top: 302px
  2001. type: header
  2002. width: 99
  2003. header_status-of-the-sds-scmagnets:
  2004. background_color: rgba(0, 0, 0, 0)
  2005. header:
  2006. size: 30
  2007. title: 'Status of the SDS sc-magnets '
  2008. weight: '700'
  2009. height: 39
  2010. left: 757px
  2011. top: 16px
  2012. type: header
  2013. width: 450