style.yaml 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790
  1. 110-VAO-8-0101:
  2. background_color: rgba(0, 0, 0, 0)
  3. height: 17.4
  4. icon: valve
  5. left: 205px
  6. linkhtml: 'true'
  7. 'off': '135'
  8. off_condition: offgreater
  9. 'on': '135'
  10. on_condition: onsmaller
  11. ref: 110-VAO-8-0101
  12. rotate: matrix(1, 0, 0, 1, 0, 0)
  13. top: 472px
  14. trend: 'true'
  15. type: icon
  16. width: 20.4
  17. 110-VAO-8-0102:
  18. background_color: rgba(0, 0, 0, 0)
  19. height: 16.4
  20. icon: valve
  21. left: 163px
  22. linkhtml: 'true'
  23. 'off': '135'
  24. off_condition: offgreater
  25. 'on': '135'
  26. on_condition: onsmaller
  27. ref: 110-VAO-8-0102
  28. rotate: matrix(1, 0, 0, 1, 0, 0)
  29. top: 472px
  30. trend: 'true'
  31. type: icon
  32. width: 21.4
  33. 113-E23-1-1100-MAG-I:
  34. background_color: rgba(0, 0, 0, 0)
  35. decimal: '2'
  36. exponential: 'false'
  37. formula: ''
  38. header:
  39. size: 20
  40. title: ' '
  41. weight: '400'
  42. height: 25.4
  43. larger: ''
  44. left: 119px
  45. lesser: ''
  46. linkhtml: 'true'
  47. ref: 113-E23-1-1100-MAG-I
  48. top: 626px
  49. trend: 'true'
  50. type: data
  51. unit:
  52. size: 20
  53. title: ' A'
  54. weight: '400'
  55. width: 86.4
  56. 113-E23-1-1100-MAG-U:
  57. background_color: rgba(0, 0, 0, 0)
  58. decimal: '2'
  59. exponential: 'false'
  60. formula: ''
  61. header:
  62. size: 18
  63. title: ' '
  64. weight: '400'
  65. height: 27.4
  66. larger: ''
  67. left: 122px
  68. lesser: ''
  69. linkhtml: 'true'
  70. ref: 113-E23-1-1100-MAG-U
  71. top: 664px
  72. trend: 'true'
  73. type: data
  74. unit:
  75. size: 18
  76. title: ' V'
  77. weight: '400'
  78. width: 87.4
  79. 200-ELV-5-3100:
  80. background_color: rgba(0, 0, 0, 0)
  81. decimal: '1'
  82. exponential: 'false'
  83. formula: ''
  84. header:
  85. size: 24
  86. title: ' '
  87. weight: '400'
  88. height: 34.4
  89. larger: ''
  90. left: 231px
  91. lesser: ''
  92. linkhtml: 'true'
  93. ref: 200-ELV-5-3100
  94. top: 586px
  95. trend: 'true'
  96. type: data
  97. unit:
  98. size: 24
  99. title: ' A'
  100. weight: '400'
  101. width: 98.4
  102. 200-ELV-5-3200:
  103. background_color: rgba(0, 0, 0, 0)
  104. decimal: '1'
  105. exponential: 'false'
  106. formula: ''
  107. header:
  108. size: 24
  109. title: ' '
  110. weight: '400'
  111. height: 33.4
  112. larger: ''
  113. left: 388px
  114. lesser: ''
  115. linkhtml: 'true'
  116. ref: 200-ELV-5-3200
  117. top: 585px
  118. trend: 'true'
  119. type: data
  120. unit:
  121. size: 24
  122. title: ' A'
  123. weight: '400'
  124. width: 106.4
  125. 200-ELV-5-3300:
  126. background_color: rgba(0, 0, 0, 0)
  127. decimal: '1'
  128. exponential: 'false'
  129. formula: ''
  130. header:
  131. size: 24
  132. title: ' '
  133. weight: '400'
  134. height: 36.4
  135. larger: ''
  136. left: 514px
  137. lesser: ''
  138. linkhtml: 'true'
  139. ref: 200-ELV-5-3300
  140. top: 587px
  141. trend: 'true'
  142. type: data
  143. unit:
  144. size: 24
  145. title: ' A'
  146. weight: '400'
  147. width: 104.4
  148. 200-ELV-5-3410:
  149. background_color: rgba(0, 0, 0, 0)
  150. decimal: '1'
  151. exponential: 'false'
  152. formula: ''
  153. header:
  154. size: 22
  155. title: ' '
  156. weight: '400'
  157. height: 34.4
  158. larger: ''
  159. left: 194px
  160. lesser: ''
  161. linkhtml: 'true'
  162. ref: 200-ELV-5-3410
  163. top: 784px
  164. trend: 'true'
  165. type: data
  166. unit:
  167. size: 22
  168. title: ' A'
  169. weight: '400'
  170. width: 100.4
  171. 200-ELV-5-3420:
  172. background_color: rgba(0, 0, 0, 0)
  173. decimal: '1'
  174. exponential: 'false'
  175. formula: ''
  176. header:
  177. size: 22
  178. title: ' '
  179. weight: '400'
  180. height: 31.4
  181. larger: ''
  182. left: 291px
  183. lesser: ''
  184. linkhtml: 'true'
  185. ref: 200-ELV-5-3420
  186. top: 785px
  187. trend: 'true'
  188. type: data
  189. unit:
  190. size: 22
  191. title: ' A'
  192. weight: '400'
  193. width: 96.4
  194. 200-ELV-5-3430:
  195. background_color: rgba(0, 0, 0, 0)
  196. decimal: '1'
  197. exponential: 'false'
  198. formula: ''
  199. header:
  200. size: 22
  201. title: ' '
  202. weight: '400'
  203. height: 34.4
  204. larger: ''
  205. left: 563px
  206. lesser: ''
  207. linkhtml: 'true'
  208. ref: 200-ELV-5-3430
  209. top: 789px
  210. trend: 'true'
  211. type: data
  212. unit:
  213. size: 22
  214. title: ' A'
  215. weight: '400'
  216. width: 106.4
  217. 200-ELV-5-3440:
  218. background_color: rgba(0, 0, 0, 0)
  219. decimal: '1'
  220. exponential: 'false'
  221. formula: ''
  222. header:
  223. size: 22
  224. title: ' '
  225. weight: '400'
  226. height: 29.4
  227. larger: ''
  228. left: 466px
  229. lesser: ''
  230. linkhtml: 'true'
  231. ref: 200-ELV-5-3440
  232. top: 788px
  233. trend: 'true'
  234. type: data
  235. unit:
  236. size: 22
  237. title: ' A'
  238. weight: '400'
  239. width: 99.4
  240. 200-MOD-0-0001:
  241. background_color: rgba(0, 0, 0, 0)
  242. cond: ''
  243. dict: '{"0":"Start-Up", "2":"Standard operation", "3":"Krypton mode", "4":"4th mode",
  244. "5":"Cool-Down: T > 100K", "6":"Cool-Down: T < 100K", "7":"Warm-Up: T < 100K",
  245. "8":"Warm-Up: T > 100K", "9":"Bake-Out"}'
  246. header:
  247. size: 28px
  248. title: 'WGTS mode: '
  249. weight: '400'
  250. height: 75.4
  251. left: 371px
  252. linkhtml: 'true'
  253. ref: 200-MOD-0-0001
  254. top: 109px
  255. trend: 'true'
  256. type: integer-to-string
  257. unit:
  258. size: 28px
  259. weight: '700'
  260. width: 362.4
  261. 200-REI-5-3111:
  262. background_color: rgba(0, 0, 0, 0)
  263. decimal: '1'
  264. exponential: 'false'
  265. formula: ''
  266. header:
  267. size: 20
  268. title: ' '
  269. weight: '400'
  270. height: 34.4
  271. larger: ''
  272. left: 229px
  273. lesser: ''
  274. linkhtml: 'true'
  275. ref: 200-REI-5-3111
  276. top: 626px
  277. trend: 'true'
  278. type: data
  279. unit:
  280. size: 20
  281. title: ' A'
  282. weight: '400'
  283. width: 115.4
  284. 200-REI-5-3211:
  285. background_color: rgba(0, 0, 0, 0)
  286. decimal: '1'
  287. exponential: 'false'
  288. formula: ''
  289. header:
  290. size: 20
  291. title: ' '
  292. weight: '400'
  293. height: 30.4
  294. larger: ''
  295. left: 387px
  296. lesser: ''
  297. linkhtml: 'true'
  298. ref: 200-REI-5-3211
  299. top: 629px
  300. trend: 'true'
  301. type: data
  302. unit:
  303. size: 20
  304. title: ' A'
  305. weight: '400'
  306. width: 103.4
  307. 200-REI-5-3311:
  308. background_color: rgba(0, 0, 0, 0)
  309. decimal: '1'
  310. exponential: 'false'
  311. formula: ''
  312. header:
  313. size: 20
  314. title: ' '
  315. weight: '400'
  316. height: 34.4
  317. larger: ''
  318. left: 515px
  319. lesser: ''
  320. linkhtml: 'true'
  321. ref: 200-REI-5-3311
  322. top: 630px
  323. trend: 'true'
  324. type: data
  325. unit:
  326. size: 20
  327. title: ' A'
  328. weight: '400'
  329. width: 100.4
  330. 200-REU-1-8131:
  331. background_color: rgba(0, 0, 0, 0)
  332. decimal: '2'
  333. exponential: 'false'
  334. formula: ''
  335. header:
  336. size: 20
  337. title: ' '
  338. weight: '400'
  339. height: 28.4
  340. larger: ''
  341. left: 227px
  342. lesser: ''
  343. linkhtml: 'true'
  344. ref: 200-REU-1-8131
  345. top: 663px
  346. trend: 'true'
  347. type: data
  348. unit:
  349. size: 20
  350. title: ' V'
  351. weight: '400'
  352. width: 94.4
  353. 200-REU-1-8133:
  354. background_color: rgba(0, 0, 0, 0)
  355. condition: ''
  356. decimal: '2'
  357. exponential: 'false'
  358. formula: ''
  359. header:
  360. size: 22
  361. title: ' '
  362. weight: '700'
  363. height: 39.4
  364. larger: ''
  365. left: 191px
  366. lesser: ''
  367. linkhtml: 'true'
  368. ref: 200-REU-1-8133
  369. top: 818px
  370. trend: 'true'
  371. type: data
  372. unit:
  373. size: 22
  374. title: ' V'
  375. weight: '400'
  376. width: 99.4
  377. 200-REU-1-8135:
  378. background_color: rgba(0, 0, 0, 0)
  379. condition: ''
  380. decimal: '2'
  381. exponential: 'false'
  382. formula: ''
  383. header:
  384. size: 22
  385. title: ' '
  386. weight: '700'
  387. height: 39.4
  388. larger: ''
  389. left: 289px
  390. lesser: ''
  391. linkhtml: 'true'
  392. ref: 200-REU-1-8135
  393. top: 818px
  394. trend: 'true'
  395. type: data
  396. unit:
  397. size: 22
  398. title: ' V'
  399. weight: '400'
  400. width: 99.4
  401. 200-REU-1-9131:
  402. background_color: rgba(0, 0, 0, 0)
  403. decimal: '2'
  404. exponential: 'false'
  405. formula: ''
  406. header:
  407. size: 20
  408. title: ' '
  409. weight: '700'
  410. height: 25.4
  411. larger: ''
  412. left: 387px
  413. lesser: ''
  414. linkhtml: 'true'
  415. ref: 200-REU-1-9131
  416. top: 666px
  417. trend: 'true'
  418. type: data
  419. unit:
  420. size: 20
  421. title: ' V'
  422. weight: '400'
  423. width: 98.4
  424. 200-REU-1-9133:
  425. background_color: rgba(0, 0, 0, 0)
  426. decimal: '2'
  427. exponential: 'false'
  428. formula: ''
  429. header:
  430. size: 20
  431. title: ' '
  432. weight: '700'
  433. height: 31.4
  434. larger: ''
  435. left: 512px
  436. lesser: ''
  437. linkhtml: 'true'
  438. ref: 200-REU-1-9133
  439. top: 667px
  440. trend: 'true'
  441. type: data
  442. unit:
  443. size: 20
  444. title: ' V'
  445. weight: '400'
  446. width: 99.4
  447. 200-REU-1-9135:
  448. background_color: rgba(0, 0, 0, 0)
  449. decimal: '2'
  450. exponential: 'false'
  451. formula: ''
  452. header:
  453. size: 22
  454. title: ' '
  455. weight: '700'
  456. height: 29.4
  457. larger: ''
  458. left: 564px
  459. lesser: ''
  460. linkhtml: 'true'
  461. ref: 200-REU-1-9135
  462. top: 820px
  463. trend: 'true'
  464. type: data
  465. unit:
  466. size: 22
  467. title: ' V'
  468. weight: '400'
  469. width: 100.4
  470. 200-REU-1-9137:
  471. background_color: rgba(0, 0, 0, 0)
  472. condition: ''
  473. decimal: '2'
  474. exponential: 'false'
  475. formula: ''
  476. header:
  477. size: 22
  478. title: ' '
  479. weight: '700'
  480. height: 26.4
  481. larger: ''
  482. left: 465px
  483. lesser: ''
  484. linkhtml: 'true'
  485. ref: 200-REU-1-9137
  486. top: 819px
  487. trend: 'true'
  488. type: data
  489. unit:
  490. size: 22
  491. title: ' V'
  492. weight: '400'
  493. width: 98.4
  494. 311-E23-1-1100-MAG-I:
  495. background_color: rgba(0, 0, 0, 0)
  496. decimal: '2'
  497. exponential: 'false'
  498. formula: ''
  499. header:
  500. size: 15
  501. title: 'M1: '
  502. weight: '400'
  503. height: 25.4
  504. larger: ''
  505. left: 635px
  506. lesser: ''
  507. linkhtml: 'true'
  508. ref: 311-E23-1-1100-MAG-I
  509. top: 652px
  510. trend: 'true'
  511. type: data
  512. unit:
  513. size: 15
  514. title: ' A'
  515. weight: '400'
  516. width: 97.4
  517. 311-E23-1-2100-MAG-I:
  518. background_color: rgba(0, 0, 0, 0)
  519. decimal: '2'
  520. exponential: 'false'
  521. formula: ''
  522. header:
  523. size: 15
  524. title: 'M2: '
  525. weight: '400'
  526. height: 23.4
  527. larger: ''
  528. left: 655px
  529. lesser: ''
  530. linkhtml: 'true'
  531. ref: 311-E23-1-2100-MAG-I
  532. top: 630px
  533. trend: 'true'
  534. type: data
  535. unit:
  536. size: 15
  537. title: ' A'
  538. weight: '400'
  539. width: 93.4
  540. 311-E23-1-3100-MAG-I:
  541. background_color: rgba(0, 0, 0, 0)
  542. decimal: '2'
  543. exponential: 'false'
  544. formula: ''
  545. header:
  546. size: 15
  547. title: 'M3: '
  548. weight: '400'
  549. height: 23.4
  550. larger: ''
  551. left: 707px
  552. lesser: ''
  553. linkhtml: 'true'
  554. ref: 311-E23-1-3100-MAG-I
  555. top: 608px
  556. trend: 'true'
  557. type: data
  558. unit:
  559. size: 15
  560. title: ' A'
  561. weight: '400'
  562. width: 101.4
  563. 311-E23-1-4100-MAG-I:
  564. background_color: rgba(0, 0, 0, 0)
  565. decimal: '2'
  566. exponential: 'false'
  567. formula: ''
  568. header:
  569. size: 15
  570. title: 'M4: '
  571. weight: '400'
  572. height: 22.4
  573. larger: ''
  574. left: 752px
  575. lesser: ''
  576. linkhtml: 'true'
  577. ref: 311-E23-1-4100-MAG-I
  578. top: 631px
  579. trend: 'true'
  580. type: data
  581. unit:
  582. size: 15
  583. title: ' A'
  584. weight: '400'
  585. width: 97.4
  586. 311-E23-1-5100-MAG-I:
  587. background_color: rgba(0, 0, 0, 0)
  588. decimal: '2'
  589. exponential: 'false'
  590. formula: ''
  591. header:
  592. size: 15
  593. title: 'M5: '
  594. weight: '400'
  595. height: 22.4
  596. larger: ''
  597. left: 760px
  598. lesser: ''
  599. linkhtml: 'true'
  600. ref: 311-E23-1-5100-MAG-I
  601. top: 654px
  602. trend: 'true'
  603. type: data
  604. unit:
  605. size: 15
  606. title: ' A'
  607. weight: '400'
  608. width: 96.4
  609. 320-ECA-1-5000:
  610. background_color: rgba(0, 0, 0, 0)
  611. decimal: '1'
  612. exponential: 'false'
  613. formula: ''
  614. header:
  615. size: 24
  616. title: ' '
  617. weight: '400'
  618. height: 30.4
  619. larger: ''
  620. left: 863px
  621. lesser: ''
  622. linkhtml: 'true'
  623. ref: 320-ECA-1-5000
  624. top: 589px
  625. trend: 'true'
  626. type: data
  627. unit:
  628. size: 24
  629. title: ' A'
  630. weight: '400'
  631. width: 110.4
  632. 320-MOD-0-0001:
  633. background_color: rgba(0, 0, 0, 0)
  634. cond: ''
  635. dict: '{"1":"Bake-out", "2":"Cool-Down", "3":"Argon-Preparation", "4":"Standby","5":"Standard
  636. Operation", "6":"Regeneration", "7":"Warm-Up", "8":"CKrS Calibration"}'
  637. header:
  638. size: 28px
  639. title: 'CPS mode: '
  640. weight: '400'
  641. height: 75.4
  642. left: 782px
  643. linkhtml: 'true'
  644. ref: 320-MOD-0-0001
  645. top: 110px
  646. trend: 'true'
  647. type: integer-to-string
  648. unit:
  649. size: 28px
  650. weight: '700'
  651. width: 352.4
  652. 320-REI-1-5103:
  653. background_color: rgba(0, 0, 0, 0)
  654. decimal: '1'
  655. exponential: 'false'
  656. formula: ''
  657. header:
  658. size: 20
  659. title: ' '
  660. weight: '400'
  661. height: 34.4
  662. larger: ''
  663. left: 865px
  664. lesser: ''
  665. linkhtml: 'true'
  666. ref: 320-REI-1-5103
  667. top: 627px
  668. trend: 'true'
  669. type: data
  670. unit:
  671. size: 20
  672. title: ' A'
  673. weight: '400'
  674. width: 104.4
  675. 320-REU-1-2115:
  676. background_color: rgba(0, 0, 0, 0)
  677. decimal: '2'
  678. exponential: 'false'
  679. formula: ''
  680. header:
  681. size: 20
  682. title: ' '
  683. weight: '400'
  684. height: 30.4
  685. larger: ''
  686. left: 862px
  687. lesser: ''
  688. linkhtml: 'true'
  689. ref: 320-REU-1-2115
  690. top: 664px
  691. trend: 'true'
  692. type: data
  693. unit:
  694. size: 20
  695. title: ' V'
  696. weight: '400'
  697. width: 98.4
  698. 320-VAO-3-0003:
  699. background_color: rgba(0, 0, 0, 0)
  700. height: 18.4
  701. icon: valve
  702. left: 938px
  703. linkhtml: 'true'
  704. 'off': '135'
  705. off_condition: offgreater
  706. 'on': '135'
  707. on_condition: onsmaller
  708. ref: 320-VAO-3-0003
  709. rotate: matrix(1, 0, 0, 1, 0, 0)
  710. top: 472px
  711. trend: 'true'
  712. type: icon
  713. width: 20.4
  714. 320-VAO-3-0004:
  715. background_color: rgba(0, 0, 0, 0)
  716. height: 16.4
  717. icon: valve
  718. left: 997px
  719. linkhtml: 'true'
  720. 'off': '135'
  721. off_condition: offgreater
  722. 'on': '135'
  723. on_condition: onsmaller
  724. ref: 320-VAO-3-0004
  725. rotate: matrix(1, 0, 0, 1, 0, 0)
  726. top: 473px
  727. trend: 'true'
  728. type: icon
  729. width: 16.4
  730. 322-AAI-0-1220-0001:
  731. background_color: rgba(0, 0, 0, 0)
  732. height: 18.4
  733. icon: commbit
  734. left: 963px
  735. linkhtml: 'true'
  736. 'off': '0'
  737. off_condition: offequal
  738. 'on': '1'
  739. on_condition: onequal
  740. ref: 322-AAI-0-1220-0001
  741. rotate: matrix(1, 0, 0, 1, 0, 0)
  742. top: 441px
  743. trend: 'true'
  744. type: icon
  745. width: 18.4
  746. 322-VAO-8-6100-0031:
  747. background_color: rgba(0, 0, 0, 0)
  748. height: 18.4
  749. icon: valve
  750. left: 961px
  751. linkhtml: 'true'
  752. 'off': '1'
  753. off_condition: offequal
  754. 'on': '0'
  755. on_condition: onequal
  756. ref: 322-VAO-8-6100-0031
  757. rotate: matrix(0, 1, -1, 0, 0, 0)
  758. top: 459px
  759. trend: 'true'
  760. type: icon
  761. width: 18.4
  762. 411-E23-1-1100-I:
  763. background_color: rgba(0, 0, 0, 0)
  764. decimal: '1'
  765. exponential: 'false'
  766. formula: ''
  767. header:
  768. size: 24
  769. title: ' '
  770. weight: '400'
  771. height: 34.4
  772. larger: ''
  773. left: 984px
  774. lesser: ''
  775. linkhtml: 'true'
  776. ref: 411-E23-1-1100-I
  777. top: 589px
  778. trend: 'true'
  779. type: data
  780. unit:
  781. size: 24
  782. title: ' A'
  783. weight: '400'
  784. width: 102.4
  785. 411-REI-1-1110:
  786. background_color: rgba(0, 0, 0, 0)
  787. decimal: '1'
  788. exponential: 'false'
  789. formula: ''
  790. header:
  791. size: 20
  792. title: ' '
  793. weight: '400'
  794. height: 34.4
  795. larger: ''
  796. left: 982px
  797. lesser: ''
  798. linkhtml: 'true'
  799. ref: 411-REI-1-1110
  800. top: 627px
  801. trend: 'true'
  802. type: data
  803. unit:
  804. size: 20
  805. title: ' A'
  806. weight: '400'
  807. width: 102.4
  808. 411-REI-1-2110:
  809. background_color: rgba(0, 0, 0, 0)
  810. decimal: '1'
  811. exponential: 'false'
  812. formula: ''
  813. header:
  814. size: 20
  815. title: ' '
  816. weight: '400'
  817. height: 28.4
  818. larger: ''
  819. left: 1100px
  820. lesser: ''
  821. linkhtml: 'true'
  822. ref: 411-REI-1-2110
  823. top: 631px
  824. trend: 'true'
  825. type: data
  826. unit:
  827. size: 20
  828. title: ' A'
  829. weight: '400'
  830. width: 90.4
  831. 411-REU-1-1120:
  832. background_color: rgba(0, 0, 0, 0)
  833. decimal: '2'
  834. exponential: 'false'
  835. formula: ''
  836. header:
  837. size: 18
  838. title: ' '
  839. weight: '400'
  840. height: 25.4
  841. larger: ''
  842. left: 997px
  843. lesser: ''
  844. linkhtml: 'true'
  845. ref: 411-REU-1-1120
  846. top: 667px
  847. trend: 'true'
  848. type: data
  849. unit:
  850. size: 18
  851. title: ' V'
  852. weight: '400'
  853. width: 77.4
  854. 411-REU-1-2120:
  855. background_color: rgba(0, 0, 0, 0)
  856. decimal: '2'
  857. exponential: 'false'
  858. formula: ''
  859. header:
  860. size: 18
  861. title: ' '
  862. weight: '400'
  863. height: 25.4
  864. larger: ''
  865. left: 1105px
  866. lesser: ''
  867. linkhtml: 'true'
  868. ref: 411-REU-1-2120
  869. top: 667px
  870. trend: 'true'
  871. type: data
  872. unit:
  873. size: 18
  874. title: ' V'
  875. weight: '400'
  876. width: 77.4
  877. 432-RPP-3-2320_MS-Tank_Vacuum:
  878. background_color: rgba(0, 0, 0, 0)
  879. decimal: '1'
  880. exponential: 'true'
  881. formula: ''
  882. header:
  883. size: 18
  884. title: 'MS-Tank-PP2 : '
  885. weight: '400'
  886. height: 48.4
  887. larger: ''
  888. left: 1764px
  889. lesser: ''
  890. linkhtml: 'true'
  891. ref: 432-RPP-3-2320_MS-Tank_Vacuum
  892. top: 549px
  893. trend: 'true'
  894. type: data
  895. unit:
  896. size: 18
  897. title: ' mbar'
  898. weight: '400'
  899. width: 123.4
  900. 433-ELV-1-0101:
  901. background_color: rgba(0, 0, 0, 0)
  902. decimal: '1'
  903. exponential: 'false'
  904. formula: ''
  905. header:
  906. size: 16
  907. title: ' '
  908. weight: '400'
  909. height: 20.4
  910. larger: ''
  911. left: 1127px
  912. lesser: ''
  913. linkhtml: 'true'
  914. ref: 433-ELV-1-0101
  915. top: 287px
  916. trend: 'true'
  917. type: data
  918. unit:
  919. size: 16
  920. title: ' A'
  921. weight: '400'
  922. width: 58.4
  923. 433-ELV-1-0201:
  924. background_color: rgba(0, 0, 0, 0)
  925. decimal: '1'
  926. exponential: 'false'
  927. formula: ''
  928. header:
  929. size: 16
  930. title: ' '
  931. weight: '400'
  932. height: 26.4
  933. larger: ''
  934. left: 1187px
  935. lesser: ''
  936. linkhtml: 'true'
  937. ref: 433-ELV-1-0201
  938. top: 288px
  939. trend: 'true'
  940. type: data
  941. unit:
  942. size: 16
  943. title: ' A'
  944. weight: '400'
  945. width: 60.4
  946. 433-ELV-1-0301:
  947. background_color: rgba(0, 0, 0, 0)
  948. decimal: '0'
  949. exponential: 'false'
  950. formula: ''
  951. header:
  952. size: 14
  953. title: 'L1 : '
  954. weight: '400'
  955. height: 47.4
  956. larger: ''
  957. left: 1253.23px
  958. lesser: ''
  959. linkhtml: 'true'
  960. ref: 433-ELV-1-0301
  961. top: 272px
  962. trend: 'true'
  963. type: data
  964. unit:
  965. size: 14
  966. title: ' A'
  967. weight: '400'
  968. width: 38.4
  969. 433-ELV-1-0401:
  970. background_color: rgba(0, 0, 0, 0)
  971. decimal: '0'
  972. exponential: 'false'
  973. formula: ''
  974. header:
  975. size: 14
  976. title: 'L2 : '
  977. weight: '400'
  978. height: 51.4
  979. larger: ''
  980. left: 1280.7px
  981. lesser: ''
  982. linkhtml: 'true'
  983. ref: 433-ELV-1-0401
  984. top: 643px
  985. trend: 'true'
  986. type: data
  987. unit:
  988. size: 14
  989. title: ' A'
  990. weight: '400'
  991. width: 37.4
  992. 433-ELV-1-0501:
  993. background_color: rgba(0, 0, 0, 0)
  994. decimal: '0'
  995. exponential: 'false'
  996. formula: ''
  997. header:
  998. size: 14
  999. title: 'L3 : '
  1000. weight: '400'
  1001. height: 50.4
  1002. larger: ''
  1003. left: 1300px
  1004. lesser: ''
  1005. linkhtml: 'true'
  1006. ref: 433-ELV-1-0501
  1007. top: 273px
  1008. trend: 'true'
  1009. type: data
  1010. unit:
  1011. size: 14
  1012. title: ' A'
  1013. weight: '400'
  1014. width: 34.4
  1015. 433-ELV-1-0601:
  1016. background_color: rgba(0, 0, 0, 0)
  1017. decimal: '0'
  1018. exponential: 'false'
  1019. formula: ''
  1020. header:
  1021. size: 14
  1022. title: 'L4 : '
  1023. weight: '400'
  1024. height: 52.4
  1025. larger: ''
  1026. left: 1328px
  1027. lesser: ''
  1028. linkhtml: 'true'
  1029. ref: 433-ELV-1-0601
  1030. top: 642px
  1031. trend: 'true'
  1032. type: data
  1033. unit:
  1034. size: 14
  1035. title: ' A'
  1036. weight: '400'
  1037. width: 35.4
  1038. 433-ELV-1-0701:
  1039. background_color: rgba(0, 0, 0, 0)
  1040. decimal: '0'
  1041. exponential: 'false'
  1042. formula: ''
  1043. header:
  1044. size: 14
  1045. title: 'L5 : '
  1046. weight: '400'
  1047. height: 51.4
  1048. larger: ''
  1049. left: 1345px
  1050. lesser: ''
  1051. linkhtml: 'true'
  1052. ref: 433-ELV-1-0701
  1053. top: 273px
  1054. trend: 'true'
  1055. type: data
  1056. unit:
  1057. size: 14
  1058. title: ' A'
  1059. weight: '400'
  1060. width: 41.4
  1061. 433-ELV-1-0801:
  1062. background_color: rgba(0, 0, 0, 0)
  1063. decimal: '0'
  1064. exponential: 'false'
  1065. formula: ''
  1066. header:
  1067. size: 14
  1068. title: 'L6 : '
  1069. weight: '400'
  1070. height: 50.4
  1071. larger: ''
  1072. left: 1373px
  1073. lesser: ''
  1074. linkhtml: 'true'
  1075. ref: 433-ELV-1-0801
  1076. top: 643px
  1077. trend: 'true'
  1078. type: data
  1079. unit:
  1080. size: 14
  1081. title: ' A'
  1082. weight: '400'
  1083. width: 36.4
  1084. 433-ELV-1-0901:
  1085. background_color: rgba(0, 0, 0, 0)
  1086. decimal: '0'
  1087. exponential: 'false'
  1088. formula: ''
  1089. header:
  1090. size: 14
  1091. title: 'L7 : '
  1092. weight: '400'
  1093. height: 51.4
  1094. larger: ''
  1095. left: 1393px
  1096. lesser: ''
  1097. linkhtml: 'true'
  1098. ref: 433-ELV-1-0901
  1099. top: 273px
  1100. trend: 'true'
  1101. type: data
  1102. unit:
  1103. size: 14
  1104. title: ' A'
  1105. weight: '400'
  1106. width: 38.4
  1107. 433-ELV-1-1001:
  1108. background_color: rgba(0, 0, 0, 0)
  1109. decimal: '0'
  1110. exponential: 'false'
  1111. formula: ''
  1112. header:
  1113. size: 14
  1114. title: 'L8 : '
  1115. weight: '400'
  1116. height: 47.4
  1117. larger: ''
  1118. left: 1417px
  1119. lesser: ''
  1120. linkhtml: 'true'
  1121. ref: 433-ELV-1-1001
  1122. top: 644px
  1123. trend: 'true'
  1124. type: data
  1125. unit:
  1126. size: 14
  1127. title: ' A'
  1128. weight: '400'
  1129. width: 38.4
  1130. 433-ELV-1-1101:
  1131. background_color: rgba(0, 0, 0, 0)
  1132. decimal: '0'
  1133. exponential: 'false'
  1134. formula: ''
  1135. header:
  1136. size: 14
  1137. title: 'L9 : '
  1138. weight: '400'
  1139. height: 53.4
  1140. larger: ''
  1141. left: 1441px
  1142. lesser: ''
  1143. linkhtml: 'true'
  1144. ref: 433-ELV-1-1101
  1145. top: 273px
  1146. trend: 'true'
  1147. type: data
  1148. unit:
  1149. size: 14
  1150. title: ' A'
  1151. weight: '400'
  1152. width: 39.4
  1153. 433-ELV-1-1201:
  1154. background_color: rgba(0, 0, 0, 0)
  1155. decimal: '0'
  1156. exponential: 'false'
  1157. formula: ''
  1158. header:
  1159. size: 14
  1160. title: 'L10 : '
  1161. weight: '400'
  1162. height: 45.4
  1163. larger: ''
  1164. left: 1460px
  1165. lesser: ''
  1166. linkhtml: 'true'
  1167. ref: 433-ELV-1-1201
  1168. top: 645px
  1169. trend: 'true'
  1170. type: data
  1171. unit:
  1172. size: 14
  1173. title: ' A'
  1174. weight: '400'
  1175. width: 43.4
  1176. 433-ELV-1-1301:
  1177. background_color: rgba(0, 0, 0, 0)
  1178. decimal: '0'
  1179. exponential: 'false'
  1180. formula: ''
  1181. header:
  1182. size: 14
  1183. title: 'L11 : '
  1184. weight: '400'
  1185. height: 54.4
  1186. larger: ''
  1187. left: 1485px
  1188. lesser: ''
  1189. linkhtml: 'true'
  1190. ref: 433-ELV-1-1301
  1191. top: 272px
  1192. trend: 'true'
  1193. type: data
  1194. unit:
  1195. size: 14
  1196. title: ' A'
  1197. weight: '400'
  1198. width: 41.4
  1199. 433-ELV-1-1401:
  1200. background_color: rgba(0, 0, 0, 0)
  1201. decimal: '0'
  1202. exponential: 'false'
  1203. formula: ''
  1204. header:
  1205. size: 14
  1206. title: 'L12 : '
  1207. weight: '400'
  1208. height: 45.4
  1209. larger: ''
  1210. left: 1506px
  1211. lesser: ''
  1212. linkhtml: 'true'
  1213. ref: 433-ELV-1-1401
  1214. top: 646px
  1215. trend: 'true'
  1216. type: data
  1217. unit:
  1218. size: 14
  1219. title: ' A'
  1220. weight: '400'
  1221. width: 44.4
  1222. 433-ELV-1-1501:
  1223. background_color: rgba(0, 0, 0, 0)
  1224. decimal: '0'
  1225. exponential: 'false'
  1226. formula: ''
  1227. header:
  1228. size: 14
  1229. title: 'L13 : '
  1230. weight: '400'
  1231. height: 54.4
  1232. larger: ''
  1233. left: 1533px
  1234. lesser: ''
  1235. linkhtml: 'true'
  1236. ref: 433-ELV-1-1501
  1237. top: 272px
  1238. trend: 'true'
  1239. type: data
  1240. unit:
  1241. size: 14
  1242. title: ' A'
  1243. weight: '400'
  1244. width: 41.4
  1245. 433-ELV-1-1601:
  1246. background_color: rgba(0, 0, 0, 0)
  1247. decimal: '0'
  1248. exponential: 'false'
  1249. formula: ''
  1250. header:
  1251. size: 14
  1252. title: 'L14 : '
  1253. weight: '400'
  1254. height: 46.4
  1255. larger: ''
  1256. left: 1560px
  1257. lesser: ''
  1258. linkhtml: 'true'
  1259. ref: 433-ELV-1-1601
  1260. top: 645px
  1261. trend: 'true'
  1262. type: data
  1263. unit:
  1264. size: 14
  1265. title: ' A'
  1266. weight: '400'
  1267. width: 42.4
  1268. 433-ELV-1-1701:
  1269. background_color: rgba(0, 0, 0, 0)
  1270. decimal: '0'
  1271. exponential: 'false'
  1272. formula: ''
  1273. header:
  1274. size: 14
  1275. title: 'L15 : '
  1276. weight: '400'
  1277. height: 56.4
  1278. larger: ''
  1279. left: 1583px
  1280. lesser: ''
  1281. linkhtml: 'true'
  1282. ref: 433-ELV-1-1701
  1283. top: 272px
  1284. trend: 'true'
  1285. type: data
  1286. unit:
  1287. size: 14
  1288. title: ' A'
  1289. weight: '400'
  1290. width: 34.4
  1291. 433-ELV-1-1801:
  1292. background_color: rgba(0, 0, 0, 0)
  1293. decimal: '0'
  1294. exponential: 'false'
  1295. formula: ''
  1296. header:
  1297. size: 14
  1298. title: 'L16 : '
  1299. weight: '400'
  1300. height: 48.4
  1301. larger: ''
  1302. left: 1607px
  1303. lesser: ''
  1304. linkhtml: 'true'
  1305. ref: 433-ELV-1-1801
  1306. top: 645px
  1307. trend: 'true'
  1308. type: data
  1309. unit:
  1310. size: 14
  1311. title: ' A'
  1312. weight: '400'
  1313. width: 32.4
  1314. 433-ELV-1-1901:
  1315. background_color: rgba(0, 0, 0, 0)
  1316. decimal: '0'
  1317. exponential: 'false'
  1318. formula: ''
  1319. header:
  1320. size: 14
  1321. title: 'L17 : '
  1322. weight: '400'
  1323. height: 55.4
  1324. larger: ''
  1325. left: 1622px
  1326. lesser: ''
  1327. linkhtml: 'true'
  1328. ref: 433-ELV-1-1901
  1329. top: 272px
  1330. trend: 'true'
  1331. type: data
  1332. unit:
  1333. size: 14
  1334. title: ' A'
  1335. weight: '400'
  1336. width: 40.4
  1337. 433-ELV-1-2001:
  1338. background_color: rgba(0, 0, 0, 0)
  1339. decimal: '0'
  1340. exponential: 'false'
  1341. formula: ''
  1342. header:
  1343. size: 14
  1344. title: 'L18 : '
  1345. weight: '400'
  1346. height: 47.4
  1347. larger: ''
  1348. left: 1644px
  1349. lesser: ''
  1350. linkhtml: 'true'
  1351. ref: 433-ELV-1-2001
  1352. top: 645px
  1353. trend: 'true'
  1354. type: data
  1355. unit:
  1356. size: 14
  1357. title: ' A'
  1358. weight: '400'
  1359. width: 36.4
  1360. 433-ELV-1-2101:
  1361. background_color: rgba(0, 0, 0, 0)
  1362. decimal: '0'
  1363. exponential: 'false'
  1364. formula: ''
  1365. header:
  1366. size: 14
  1367. title: 'L19 : '
  1368. weight: '400'
  1369. height: 52.4
  1370. larger: ''
  1371. left: 1674px
  1372. lesser: ''
  1373. linkhtml: 'true'
  1374. ref: 433-ELV-1-2101
  1375. top: 273px
  1376. trend: 'true'
  1377. type: data
  1378. unit:
  1379. size: 14
  1380. title: ' A'
  1381. weight: '400'
  1382. width: 41.4
  1383. 433-ELV-1-2201:
  1384. background_color: rgba(0, 0, 0, 0)
  1385. decimal: '0'
  1386. exponential: 'false'
  1387. formula: ''
  1388. header:
  1389. size: 14
  1390. title: 'L20 : '
  1391. weight: '400'
  1392. height: 48.4
  1393. larger: ''
  1394. left: 1703px
  1395. lesser: ''
  1396. linkhtml: 'true'
  1397. ref: 433-ELV-1-2201
  1398. top: 646px
  1399. trend: 'true'
  1400. type: data
  1401. unit:
  1402. size: 14
  1403. title: ' A'
  1404. weight: '400'
  1405. width: 44.4
  1406. 521-ELV-0-1205-0001:
  1407. background_color: rgba(255, 255, 255, 0.498)
  1408. decimal: '1'
  1409. exponential: 'false'
  1410. formula: ''
  1411. header:
  1412. size: 24
  1413. title: ' '
  1414. weight: '400'
  1415. height: 39.4
  1416. larger: ''
  1417. left: 1761px
  1418. lesser: ''
  1419. linkhtml: 'true'
  1420. ref: 521-ELV-0-1205-0001
  1421. top: 614px
  1422. trend: 'true'
  1423. type: data
  1424. unit:
  1425. size: 24
  1426. title: ' A'
  1427. weight: '400'
  1428. width: 98.4
  1429. 521-ELV-0-1205-0101:
  1430. background_color: rgba(0, 0, 0, 0)
  1431. decimal: '2'
  1432. exponential: 'false'
  1433. formula: ''
  1434. header:
  1435. size: 16
  1436. title: ' '
  1437. weight: '400'
  1438. height: 19.4
  1439. larger: ''
  1440. left: 1770px
  1441. lesser: ''
  1442. linkhtml: 'true'
  1443. ref: 521-ELV-0-1205-0101
  1444. top: 657px
  1445. trend: 'true'
  1446. type: data
  1447. unit:
  1448. size: 16
  1449. title: ' V'
  1450. weight: '400'
  1451. width: 67.4
  1452. 521-ELV-0-2205-0001:
  1453. background_color: rgba(0, 0, 0, 0)
  1454. decimal: '1'
  1455. exponential: 'false'
  1456. formula: ''
  1457. header:
  1458. size: 24
  1459. title: ' '
  1460. weight: '400'
  1461. height: 39.4
  1462. larger: ''
  1463. left: 1870px
  1464. lesser: ''
  1465. linkhtml: 'true'
  1466. ref: 521-ELV-0-2205-0001
  1467. top: 613px
  1468. trend: 'true'
  1469. type: data
  1470. unit:
  1471. size: 24
  1472. title: ' A'
  1473. weight: '400'
  1474. width: 97.4
  1475. 521-ELV-0-2205-0101:
  1476. background_color: rgba(0, 0, 0, 0)
  1477. decimal: '2'
  1478. exponential: 'false'
  1479. formula: ''
  1480. header:
  1481. size: 16
  1482. title: ' '
  1483. weight: '400'
  1484. height: 21.4
  1485. larger: ''
  1486. left: 1875px
  1487. lesser: ''
  1488. linkhtml: 'true'
  1489. ref: 521-ELV-0-2205-0101
  1490. top: 658px
  1491. trend: 'true'
  1492. type: data
  1493. unit:
  1494. size: 16
  1495. title: ' V'
  1496. weight: '400'
  1497. width: 76.4
  1498. 522-VAO-3-1010:
  1499. background_color: rgba(0, 0, 0, 0)
  1500. height: 19.4
  1501. icon: valve
  1502. left: 1774px
  1503. linkhtml: 'true'
  1504. 'off': '0'
  1505. off_condition: offequal
  1506. 'on': '1'
  1507. on_condition: onequal
  1508. ref: 522-VAO-3-1010
  1509. rotate: matrix(1, 0, 0, 1, 0, 0)
  1510. top: 472px
  1511. trend: 'true'
  1512. type: icon
  1513. width: 20.4
  1514. 610-RFY-8-0206:
  1515. background_color: rgba(0, 0, 0, 0)
  1516. decimal: '2'
  1517. exponential: 'false'
  1518. formula: (x + 3.4) * 0.01689189
  1519. header:
  1520. size: 16
  1521. title: 'Inlet-flow '
  1522. weight: '400'
  1523. height: 21.4
  1524. larger: ''
  1525. left: 233px
  1526. lesser: ''
  1527. linkhtml: 'true'
  1528. ref: 610-RFY-8-0206
  1529. top: 244px
  1530. trend: 'true'
  1531. type: data
  1532. unit:
  1533. size: 16
  1534. title: ' mbar*l/s'
  1535. weight: '400'
  1536. width: 203.4
  1537. 610-VAO-3-0001:
  1538. background_color: rgba(0, 0, 0, 0)
  1539. height: 20.4
  1540. icon: valve
  1541. left: 633px
  1542. linkhtml: 'true'
  1543. 'off': '135'
  1544. off_condition: offgreater
  1545. 'on': '135'
  1546. on_condition: onsmaller
  1547. ref: 610-VAO-3-0001
  1548. rotate: matrix(1, 0, 0, 1, 0, 0)
  1549. top: 471px
  1550. trend: 'true'
  1551. type: icon
  1552. width: 17.4
  1553. 610-VAO-8-1501:
  1554. background_color: rgba(0, 0, 0, 0)
  1555. height: 21.4
  1556. icon: valve
  1557. left: 208px
  1558. linkhtml: 'true'
  1559. 'off': '135'
  1560. off_condition: offgreater
  1561. 'on': '135'
  1562. on_condition: onsmaller
  1563. ref: 610-VAO-8-1501
  1564. rotate: matrix(1, 0, 0, 1, 0, 0)
  1565. top: 245px
  1566. trend: 'false'
  1567. type: icon
  1568. width: 18.4
  1569. 620-VAO-3-0002:
  1570. background_color: rgba(0, 0, 0, 0)
  1571. height: 17.4
  1572. icon: valve
  1573. left: 809px
  1574. linkhtml: 'true'
  1575. 'off': '135'
  1576. off_condition: offgreater
  1577. 'on': '135'
  1578. on_condition: onsmaller
  1579. ref: 620-VAO-3-0002
  1580. rotate: matrix(1, 0, 0, 1, 0, 0)
  1581. top: 476px
  1582. trend: 'true'
  1583. type: icon
  1584. width: 23.4
  1585. 630-VAO-8-6400:
  1586. background_color: rgba(0, 0, 0, 0)
  1587. height: 18.4
  1588. icon: valve
  1589. left: 963px
  1590. linkhtml: 'true'
  1591. 'off': '135'
  1592. off_condition: offgreater
  1593. 'on': '135'
  1594. on_condition: onsmaller
  1595. ref: 630-VAO-8-6400
  1596. rotate: matrix(0, 1, -1, 0, 0, 0)
  1597. top: 483px
  1598. trend: 'true'
  1599. type: icon
  1600. width: 17.4
  1601. EHV-MS-Tank_U:
  1602. background_color: rgba(200, 200, 200, 0.498)
  1603. decimal: '1'
  1604. exponential: 'false'
  1605. formula: ''
  1606. header:
  1607. size: 20
  1608. title: 'HV MS-Tank : '
  1609. weight: '400'
  1610. height: 60.4
  1611. larger: ''
  1612. left: 1409px
  1613. lesser: ''
  1614. linkhtml: 'true'
  1615. ref: EHV-MS-Tank_U
  1616. top: 552px
  1617. trend: 'true'
  1618. type: data
  1619. unit:
  1620. size: 24
  1621. title: ' V'
  1622. weight: '400'
  1623. width: 127.4
  1624. calc_0:
  1625. background_color: rgba(0, 0, 0, 0)
  1626. decimal: '1'
  1627. formula: '[200-ELV-5-3100]*0.01162'
  1628. header:
  1629. size: 28
  1630. title: ' '
  1631. weight: '700'
  1632. height: 34.4
  1633. larger: ''
  1634. left: 243px
  1635. lesser: ''
  1636. ref: ''
  1637. top: 386px
  1638. type: calc
  1639. unit:
  1640. size: 28
  1641. title: ' T'
  1642. weight: '700'
  1643. width: 129.4
  1644. calc_007:
  1645. background_color: rgba(0, 0, 0, 0)
  1646. decimal: '1'
  1647. formula: -[113-E23-1-1100-MAG-I]*0.07057163
  1648. header:
  1649. size: 28
  1650. title: ' '
  1651. weight: '700'
  1652. height: 35.4
  1653. larger: ''
  1654. left: 107px
  1655. lesser: ''
  1656. ref: ''
  1657. top: 385px
  1658. type: calc
  1659. unit:
  1660. size: 28
  1661. title: ' T'
  1662. weight: '700'
  1663. width: 130.4
  1664. calc_1:
  1665. background_color: rgba(0, 0, 0, 0)
  1666. decimal: '1'
  1667. formula: '[200-ELV-5-3200]*0.01166'
  1668. header:
  1669. size: 28
  1670. title: ' '
  1671. weight: '400'
  1672. height: 39.4
  1673. larger: ''
  1674. left: 380px
  1675. lesser: ''
  1676. ref: ''
  1677. top: 386px
  1678. type: calc
  1679. unit:
  1680. size: 28
  1681. title: ' T'
  1682. weight: '700'
  1683. width: 140.4
  1684. calc_100110rby11052011625-1:
  1685. background_color: rgba(0, 0, 0, 0)
  1686. decimal: '2'
  1687. formula: 100*([110-RBY-1-1052]/0.13675 -1)
  1688. header:
  1689. size: 14
  1690. title: ' '
  1691. weight: '400'
  1692. height: 19.4
  1693. larger: '0.3'
  1694. left: 139px
  1695. lesser: '-0.3'
  1696. ref: ''
  1697. top: 529px
  1698. type: calc
  1699. unit:
  1700. size: 14
  1701. title: ' %'
  1702. weight: '400'
  1703. width: 66.4
  1704. calc_1001411rby120016225:
  1705. background_color: rgba(255, 255, 255, 0.498)
  1706. decimal: '2'
  1707. formula: 100*([411-RBY-1-2011]/0.10912 -1)
  1708. header:
  1709. size: 14
  1710. title: ' '
  1711. weight: '400'
  1712. height: 22.4
  1713. larger: '0.1'
  1714. left: 1112px
  1715. lesser: '-0.1'
  1716. ref: ''
  1717. top: 525px
  1718. type: calc
  1719. unit:
  1720. size: 14
  1721. title: ' %'
  1722. weight: '400'
  1723. width: 67.4
  1724. calc_1001521rby012750001472:
  1725. background_color: rgba(0, 0, 0, 0)
  1726. decimal: '2'
  1727. formula: 100*([521-RBY-0-1275-0001]/0.11127 -1)
  1728. header:
  1729. size: 14
  1730. title: ' '
  1731. weight: '400'
  1732. height: 26.4
  1733. larger: '0.03'
  1734. left: 1762px
  1735. lesser: '-0.03'
  1736. ref: ''
  1737. top: 516px
  1738. type: calc
  1739. unit:
  1740. size: 14
  1741. title: ' %'
  1742. weight: '400'
  1743. width: 60.4
  1744. calc_1001521rby022750002755:
  1745. background_color: rgba(0, 0, 0, 0)
  1746. decimal: '2'
  1747. formula: 100*([521-RBY-0-2275-0001]/0.17541 -1)
  1748. header:
  1749. size: 14
  1750. title: ' '
  1751. weight: '400'
  1752. height: 25.4
  1753. larger: '0.1'
  1754. left: 1833px
  1755. lesser: '-0.1'
  1756. ref: ''
  1757. top: 516px
  1758. type: calc
  1759. unit:
  1760. size: 14
  1761. title: ' %'
  1762. weight: '400'
  1763. width: 66.4
  1764. calc_100200elv1310021586-1:
  1765. background_color: rgba(0, 0, 0, 0)
  1766. decimal: '2'
  1767. formula: 100*([200-ELV-5-3200]/215.86 -1)
  1768. header:
  1769. size: 14
  1770. title: ' '
  1771. weight: '700'
  1772. height: 19.4
  1773. larger: '0.03'
  1774. left: 408px
  1775. lesser: '-0.03'
  1776. ref: ''
  1777. top: 528px
  1778. type: calc
  1779. unit:
  1780. size: 14
  1781. title: ' %'
  1782. weight: '400'
  1783. width: 64.4
  1784. calc_100200elv5310021659-1:
  1785. background_color: rgba(0, 0, 0, 0)
  1786. decimal: '2'
  1787. formula: 100*([200-ELV-5-3100]/216.59 -1)
  1788. header:
  1789. size: 14
  1790. title: ' '
  1791. weight: '700'
  1792. height: 20.4
  1793. larger: '0.03'
  1794. left: 244px
  1795. lesser: '-0.03'
  1796. ref: ''
  1797. top: 527px
  1798. type: calc
  1799. unit:
  1800. size: 14
  1801. title: ' %'
  1802. weight: '400'
  1803. width: 68.4
  1804. calc_100200elv53300145912-1:
  1805. background_color: rgba(0, 0, 0, 0)
  1806. decimal: '2'
  1807. formula: 100*([200-ELV-5-3300]/145.912 -1)
  1808. header:
  1809. size: 14
  1810. title: ' '
  1811. weight: '700'
  1812. height: 20.4
  1813. larger: '0.03'
  1814. left: 533px
  1815. lesser: '-0.03'
  1816. ref: ''
  1817. top: 528px
  1818. type: calc
  1819. unit:
  1820. size: 14
  1821. title: ' %'
  1822. weight: '400'
  1823. width: 65.4
  1824. calc_100311rby11051054-1:
  1825. background_color: rgba(0, 0, 0, 0)
  1826. decimal: '1'
  1827. formula: 100*([311-RBY-1-1051]/0.60853 -1)
  1828. header:
  1829. size: 14
  1830. title: ' '
  1831. weight: '700'
  1832. height: 20.4
  1833. larger: '0.3'
  1834. left: 630px
  1835. lesser: '-0.3'
  1836. ref: ''
  1837. top: 528px
  1838. type: calc
  1839. unit:
  1840. size: 14
  1841. title: ' %'
  1842. weight: '400'
  1843. width: 49.4
  1844. calc_100311rby1205106387-1:
  1845. background_color: rgba(0, 0, 0, 0)
  1846. decimal: '1'
  1847. formula: 100*([311-RBY-1-3051]/0.730155 -1)
  1848. header:
  1849. size: 14
  1850. title: ' '
  1851. weight: '700'
  1852. height: 21.4
  1853. larger: '0.3'
  1854. left: 709px
  1855. lesser: '-0.3'
  1856. ref: ''
  1857. top: 528px
  1858. type: calc
  1859. unit:
  1860. size: 14
  1861. title: ' %'
  1862. weight: '400'
  1863. width: 45.4
  1864. calc_100311rby120510701-1:
  1865. background_color: rgba(0, 0, 0, 0)
  1866. decimal: '1'
  1867. formula: 100*([311-RBY-1-2051]/0.80017 -1)
  1868. header:
  1869. size: 14
  1870. title: ' '
  1871. weight: '700'
  1872. height: 21.4
  1873. larger: '0.3'
  1874. left: 669px
  1875. lesser: '-0.3'
  1876. ref: ''
  1877. top: 528px
  1878. type: calc
  1879. unit:
  1880. size: 14
  1881. title: ' %'
  1882. weight: '400'
  1883. width: 46.4
  1884. calc_100311rby1405106795-1:
  1885. background_color: rgba(0, 0, 0, 0)
  1886. decimal: '1'
  1887. formula: 100*([311-RBY-1-4051]/0.77743 -1)
  1888. header:
  1889. size: 14
  1890. title: ' '
  1891. weight: '700'
  1892. height: 23.4
  1893. larger: '0.5'
  1894. left: 750px
  1895. lesser: '-0.5'
  1896. ref: ''
  1897. top: 528px
  1898. type: calc
  1899. unit:
  1900. size: 14
  1901. title: ' %'
  1902. weight: '400'
  1903. width: 41.4
  1904. calc_100311rby1505106945-1:
  1905. background_color: rgba(0, 0, 0, 0)
  1906. decimal: '1'
  1907. formula: 100*([311-RBY-1-5051]/0.79539 -1)
  1908. header:
  1909. size: 14
  1910. title: ' '
  1911. weight: '700'
  1912. height: 22.4
  1913. larger: '0.3'
  1914. left: 787px
  1915. lesser: '-0.3'
  1916. ref: ''
  1917. top: 528px
  1918. type: calc
  1919. unit:
  1920. size: 14
  1921. title: ' %'
  1922. weight: '400'
  1923. width: 45.4
  1924. calc_100320eca1500014003-1:
  1925. background_color: rgba(0, 0, 0, 0)
  1926. decimal: '2'
  1927. formula: 100*([320-ECA-1-5000]/140.03 -1)
  1928. header:
  1929. size: 14
  1930. title: ' '
  1931. weight: '700'
  1932. height: 20.4
  1933. larger: '0.1'
  1934. left: 875px
  1935. lesser: '-0.1'
  1936. ref: ''
  1937. top: 530px
  1938. type: calc
  1939. unit:
  1940. size: 14
  1941. title: ' %'
  1942. weight: '400'
  1943. width: 72.4
  1944. calc_100411rby11001025565-1:
  1945. background_color: rgba(0, 0, 0, 0)
  1946. decimal: '2'
  1947. formula: 100*([411-RBY-1-1011]/0.28422 -1)
  1948. header:
  1949. size: 14
  1950. title: ' '
  1951. weight: '700'
  1952. height: 21.4
  1953. larger: '0.3'
  1954. left: 1005px
  1955. lesser: '-0.3'
  1956. ref: ''
  1957. top: 528px
  1958. type: calc
  1959. unit:
  1960. size: 14
  1961. title: ' %'
  1962. weight: '400'
  1963. width: 66.4
  1964. calc_100abs441rby135010224-1:
  1965. background_color: rgba(0, 0, 0, 0)
  1966. decimal: '2'
  1967. formula: 100*(abs([441-RBY-1-3501])/0.2242 -1)
  1968. header:
  1969. size: 16
  1970. title: ' '
  1971. weight: '400'
  1972. height: 23.4
  1973. larger: '1'
  1974. left: 1337px
  1975. lesser: '-1'
  1976. ref: ''
  1977. top: 876px
  1978. type: calc
  1979. unit:
  1980. size: 16
  1981. title: ' %'
  1982. weight: '400'
  1983. width: 69.4
  1984. calc_100abs441rby145010245-1:
  1985. background_color: rgba(0, 0, 0, 0)
  1986. decimal: '2'
  1987. formula: 100*(abs([441-RBY-1-4501])/0.274 -1)
  1988. header:
  1989. size: '16'
  1990. title: ''
  1991. weight: '400'
  1992. height: 23.4
  1993. larger: '1'
  1994. left: 1494px
  1995. lesser: '-1'
  1996. ref: ''
  1997. top: 874px
  1998. type: calc
  1999. unit:
  2000. size: '16'
  2001. title: '%'
  2002. weight: '400'
  2003. width: 71.4
  2004. calc_2:
  2005. background_color: rgba(0, 0, 0, 0)
  2006. decimal: '1'
  2007. formula: '[200-ELV-5-3300]*0.02681'
  2008. header:
  2009. size: 28
  2010. title: ' '
  2011. weight: '700'
  2012. height: 35.4
  2013. larger: ''
  2014. left: 517px
  2015. lesser: ''
  2016. ref: ''
  2017. top: 387px
  2018. type: calc
  2019. unit:
  2020. size: 28
  2021. title: ' T'
  2022. weight: '700'
  2023. width: 129.4
  2024. calc_3:
  2025. background_color: rgba(255, 255, 255, 0.498)
  2026. decimal: '1'
  2027. formula: '[320-REI-1-5103]*0.0285'
  2028. header:
  2029. size: 28
  2030. title: ' '
  2031. weight: '700'
  2032. height: 32.4
  2033. larger: ''
  2034. left: 848px
  2035. lesser: ''
  2036. ref: ''
  2037. top: 378px
  2038. type: calc
  2039. unit:
  2040. size: 28
  2041. title: ' T'
  2042. weight: '700'
  2043. width: 129.4
  2044. calc_4:
  2045. background_color: rgba(255, 255, 255, 0.498)
  2046. decimal: '1'
  2047. formula: '[411-REI-1-1110]*0.0287'
  2048. header:
  2049. size: 28
  2050. title: ' '
  2051. weight: '400'
  2052. height: 34.4
  2053. larger: ''
  2054. left: 993px
  2055. lesser: ''
  2056. ref: ''
  2057. top: 385px
  2058. type: calc
  2059. unit:
  2060. size: 28
  2061. title: ' T'
  2062. weight: '700'
  2063. width: 131.4
  2064. calc_433rby173200003433rby173300003433rby173500003433rby1736000034:
  2065. background_color: rgba(200, 200, 200, 0.498)
  2066. decimal: '1'
  2067. formula: ([433-RBY-1-7320-0003]+[433-RBY-1-7330-0003]+[433-RBY-1-7350-0003]+[433-RBY-1-7360-0003])/4
  2068. header:
  2069. size: 24
  2070. title: 'Ba: '
  2071. weight: '700'
  2072. height: 35.4
  2073. larger: ''
  2074. left: 1390px
  2075. lesser: ''
  2076. ref: ''
  2077. top: 462px
  2078. type: calc
  2079. unit:
  2080. size: 24
  2081. title: ' G'
  2082. weight: '700'
  2083. width: 175.4
  2084. calc_5:
  2085. background_color: rgba(255, 255, 255, 0.498)
  2086. decimal: '1'
  2087. formula: '[411-REI-1-2110]*0.0286'
  2088. header:
  2089. size: 28
  2090. title: ' '
  2091. weight: '400'
  2092. height: 25.4
  2093. larger: ''
  2094. left: 1103px
  2095. lesser: ''
  2096. ref: ''
  2097. top: 385px
  2098. type: calc
  2099. unit:
  2100. size: 28
  2101. title: ' T'
  2102. weight: '700'
  2103. width: 134.4
  2104. calc_507:
  2105. background_color: rgba(0, 0, 0, 0)
  2106. decimal: '1'
  2107. formula: -[311-E23-1-3100-MAG-I]*0.07057163
  2108. header:
  2109. size: 28
  2110. title: ' '
  2111. weight: '700'
  2112. height: 39.4
  2113. larger: ''
  2114. left: 685px
  2115. lesser: ''
  2116. ref: ''
  2117. top: 378px
  2118. type: calc
  2119. unit:
  2120. size: 28
  2121. title: ' T'
  2122. weight: '700'
  2123. width: 130.4
  2124. calc_6:
  2125. background_color: rgba(255, 255, 255, 0.498)
  2126. decimal: '1'
  2127. formula: '[521-ELV-0-1205-0001]*0.06898'
  2128. header:
  2129. size: 28
  2130. title: ' '
  2131. weight: '400'
  2132. height: 39.4
  2133. larger: ''
  2134. left: 1750.22px
  2135. lesser: ''
  2136. ref: ''
  2137. top: 404px
  2138. type: calc
  2139. unit:
  2140. size: 28
  2141. title: ' T'
  2142. weight: '700'
  2143. width: 100.4
  2144. calc_61:
  2145. background_color: rgba(0, 0, 0, 0)
  2146. decimal: '1'
  2147. formula: 6*abs([441-RBY-1-4501]/0.2446)
  2148. header:
  2149. size: 24
  2150. title: ' '
  2151. weight: '400'
  2152. height: 34.4
  2153. larger: ''
  2154. left: 1496px
  2155. lesser: ''
  2156. ref: ''
  2157. top: 744px
  2158. type: calc
  2159. unit:
  2160. size: 24
  2161. title: ' T'
  2162. weight: '400'
  2163. width: 101.4
  2164. calc_65050:
  2165. background_color: rgba(0, 0, 0, 0)
  2166. decimal: '1'
  2167. formula: 6*abs([441-RBY-1-3501]/0.2242)
  2168. header:
  2169. size: 24
  2170. title: ' '
  2171. weight: '700'
  2172. height: 35.4
  2173. larger: ''
  2174. left: 1347px
  2175. lesser: ''
  2176. ref: ''
  2177. top: 744px
  2178. type: calc
  2179. unit:
  2180. size: 24
  2181. title: ' T'
  2182. weight: '400'
  2183. width: 100.4
  2184. calc_7:
  2185. background_color: rgba(0, 0, 0, 0)
  2186. decimal: '1'
  2187. formula: '[521-ELV-0-2205-0001]*0.064057'
  2188. header:
  2189. size: 28
  2190. title: ' '
  2191. weight: '400'
  2192. height: 39.4
  2193. larger: ''
  2194. left: 1859.23px
  2195. lesser: ''
  2196. ref: ''
  2197. top: 404px
  2198. type: calc
  2199. unit:
  2200. size: 28
  2201. title: ' T'
  2202. weight: '700'
  2203. width: 100.4
  2204. header_b-t:
  2205. background_color: rgba(0, 0, 0, 0)
  2206. header:
  2207. size: 24
  2208. title: 'B (T) '
  2209. weight: '700'
  2210. height: 45.4
  2211. left: 14px
  2212. top: 388px
  2213. type: header
  2214. width: 61.4
  2215. header_ckrs:
  2216. background_color: rgba(0, 0, 0, 0)
  2217. header:
  2218. size: 18
  2219. title: 'CKrS '
  2220. weight: '700'
  2221. height: 24.4
  2222. left: 950px
  2223. 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=ckrs__CKrS__0__10,ckrs__CKrS__0__11,ckrs__CKrS__0__12,ckrs__CKrS__0__13,ckrs__CKrS__0__14,ckrs__CKrS__0__15,ckrs__CKrS__0__16,ckrs__CKrS__0__17&infomod=legend&history_id=1558684048204
  2224. top: 495px
  2225. type: header
  2226. width: 50.4
  2227. header_cl:
  2228. background_color: rgba(0, 0, 0, 0)
  2229. header:
  2230. size: 20
  2231. title: 'CL '
  2232. weight: '400'
  2233. height: 34.4
  2234. left: 484px
  2235. titlelink: http://bora-wgts-magnets.kaas.kit.edu/
  2236. top: 429px
  2237. type: header
  2238. width: 31.4
  2239. header_cps:
  2240. background_color: rgba(0, 0, 0, 0)
  2241. header:
  2242. size: 28
  2243. title: 'CPS '
  2244. weight: '700'
  2245. height: 34.4
  2246. left: 854px
  2247. titlelink: http://bora-cps.kaas.kit.edu/
  2248. top: 338px
  2249. type: header
  2250. width: 51.4
  2251. header_d:
  2252. background_color: rgba(0, 0, 0, 0)
  2253. header:
  2254. size: 24
  2255. title: 'D '
  2256. weight: '700'
  2257. height: 33.4
  2258. left: 1510px
  2259. 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=csmos__ControlSystem_MoS__440KRYO_Anlage__27,csmos__ControlSystem_MoS__440KRYO_Anlage__45,csmos__ControlSystem_MoS__440KRYO_Anlage__48&bar_axis_range=0:0&K_axis_range=0:300&infomod=legend&history_id=1552915541577
  2260. top: 716px
  2261. type: header
  2262. width: 50.4
  2263. header_det:
  2264. background_color: rgba(0, 0, 0, 0)
  2265. header:
  2266. size: 28
  2267. title: 'DET '
  2268. weight: '700'
  2269. height: 43.4
  2270. left: 1852px
  2271. 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__0__103,fpd__katrin_rep__0__111,fpd__katrin_rep__0__158,fpd__katrin_rep__0__159,fpd__katrin_rep__0__160,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=1549368253825
  2272. top: 355px
  2273. type: header
  2274. width: 56.4
  2275. header_dfx:
  2276. background_color: rgba(0, 0, 0, 0)
  2277. header:
  2278. size: 22
  2279. title: 'DFx '
  2280. weight: '700'
  2281. height: 38.4
  2282. left: 502px
  2283. top: 757px
  2284. type: header
  2285. width: 50.4
  2286. header_dfy:
  2287. background_color: rgba(0, 0, 0, 0)
  2288. header:
  2289. size: 22
  2290. title: 'DFy '
  2291. weight: '700'
  2292. height: 35.4
  2293. left: 578px
  2294. top: 758px
  2295. type: header
  2296. width: 54.4
  2297. header_dipole-coil-pairs:
  2298. background_color: rgba(0, 0, 0, 0)
  2299. header:
  2300. size: 24
  2301. title: 'Dipole coil pairs '
  2302. weight: '700'
  2303. height: 39.4
  2304. left: 322px
  2305. 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=21600&module=graph&virtual=srctree&srctree=cswgts__ControlSystem_WGTS_Magnet__200_MAG_Stromzufuhr_M1_M4_M5__54,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Stromzufuhr_M1_M4_M5__60,cstmagnet__ControlSystem_Magnet__800_MAG_MAG_Control__45,cstmagnet__ControlSystem_Magnet__800_MAG_MAG_Control__51&infomod=legend&history_id=1551190658432
  2306. top: 726px
  2307. type: header
  2308. width: 214.4
  2309. header_dps:
  2310. background_color: rgba(0, 0, 0, 0)
  2311. header:
  2312. size: 28
  2313. title: 'DPS '
  2314. weight: '700'
  2315. height: 35.4
  2316. left: 702px
  2317. titlelink: http://bora-dps.kaas.kit.edu/
  2318. top: 340px
  2319. type: header
  2320. width: 64.4
  2321. header_drx:
  2322. background_color: rgba(0, 0, 0, 0)
  2323. header:
  2324. size: 22
  2325. title: 'DRx '
  2326. weight: '700'
  2327. height: 34.4
  2328. left: 195px
  2329. 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=21600&module=graph&virtual=srctree&srctree=cswgts__ControlSystem_WGTS_Magnet__200_MAG_Stromzufuhr_M1_M4_M5__54,cstmagnet__ControlSystem_Magnet__800_MAG_MAG_Control__45&infomod=legend&history_id=1551190823074
  2330. top: 755px
  2331. type: header
  2332. width: 50.4
  2333. header_dry:
  2334. background_color: rgba(0, 0, 0, 0)
  2335. header:
  2336. size: 22
  2337. title: 'DRy '
  2338. weight: '700'
  2339. height: 30.4
  2340. left: 294px
  2341. 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=21600&module=graph&virtual=srctree&srctree=cswgts__ControlSystem_WGTS_Magnet__200_MAG_Stromzufuhr_M1_M4_M5__60,cstmagnet__ControlSystem_Magnet__800_MAG_MAG_Control__51&infomod=legend&history_id=1551190742088
  2342. top: 757px
  2343. type: header
  2344. width: 56.4
  2345. header_elfcs:
  2346. background_color: rgba(0, 0, 0, 0)
  2347. header:
  2348. size: 18
  2349. title: 'eLFCS '
  2350. weight: '700'
  2351. height: 24.4
  2352. left: 1411px
  2353. 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=aircoils__aircoils_rep__0__4,aircoils__aircoils_rep__0__5,aircoils__aircoils_rep__0__6,aircoils__aircoils_rep__0__7,aircoils__aircoils_rep__0__8,aircoils__aircoils_rep__0__9,aircoils__aircoils_rep__0__10,aircoils__aircoils_rep__0__11,aircoils__aircoils_rep__0__12,aircoils__aircoils_rep__0__13,aircoils__aircoils_rep__0__14,aircoils__aircoils_rep__0__15,aircoils__aircoils_rep__0__16,aircoils__aircoils_rep__0__17,aircoils__aircoils_rep__0__18,aircoils__aircoils_rep__0__19,aircoils__aircoils_rep__0__20,aircoils__aircoils_rep__0__21,aircoils__aircoils_rep__0__22,aircoils__aircoils_rep__0__23&bar_axis_range=0:0&K_axis_range=0:300&infomod=legend&history_id=1566466009363
  2354. top: 224px
  2355. type: header
  2356. width: 50.4
  2357. header_elfcsu:
  2358. background_color: rgba(0, 0, 0, 0)
  2359. header:
  2360. size: 14
  2361. title: 'eLFCS_U '
  2362. weight: '400'
  2363. height: 19.4
  2364. left: 1413px
  2365. 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=aircoils__aircoils_rep__0__24,aircoils__aircoils_rep__0__25,aircoils__aircoils_rep__0__26,aircoils__aircoils_rep__0__27,aircoils__aircoils_rep__0__28,aircoils__aircoils_rep__0__29,aircoils__aircoils_rep__0__30,aircoils__aircoils_rep__0__31,aircoils__aircoils_rep__0__32,aircoils__aircoils_rep__0__33,aircoils__aircoils_rep__0__34,aircoils__aircoils_rep__0__35,aircoils__aircoils_rep__0__36,aircoils__aircoils_rep__0__37,aircoils__aircoils_rep__0__38,aircoils__aircoils_rep__0__39,aircoils__aircoils_rep__0__40,aircoils__aircoils_rep__0__41,aircoils__aircoils_rep__0__42,aircoils__aircoils_rep__0__43,aircoils__aircoils_rep__0__44,aircoils__aircoils_rep__0__45&bar_axis_range=0:0&K_axis_range=0:300&infomod=legend&history_id=1570626406597
  2366. top: 250px
  2367. type: header
  2368. width: 50.4
  2369. header_emcs:
  2370. background_color: rgba(0, 0, 0, 0)
  2371. header:
  2372. size: 16
  2373. title: 'EMCS '
  2374. weight: '700'
  2375. height: 28.4
  2376. left: 1147px
  2377. 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=aircoils__aircoils_rep__0__2,aircoils__aircoils_rep__0__3&bar_axis_range=0:0&K_axis_range=0:300&infomod=legend&history_id=1549368590150
  2378. top: 237px
  2379. type: header
  2380. width: 50.4
  2381. header_fbm:
  2382. background_color: rgba(0, 0, 0, 0)
  2383. header:
  2384. size: 18
  2385. title: 'FBM '
  2386. weight: '700'
  2387. height: 21.4
  2388. left: 954px
  2389. titlelink: http://at-web.physik.uni-wuppertal.de/FBM-monitor/
  2390. top: 417px
  2391. type: header
  2392. width: 50.4
  2393. header_fpd:
  2394. background_color: rgba(0, 0, 0, 0)
  2395. header:
  2396. size: 18
  2397. title: 'FPD '
  2398. weight: '700'
  2399. height: 24.4
  2400. left: 1853px
  2401. titlelink: https://ikp-katrin-fpd.ikp.kit.edu/fpdstatus/
  2402. top: 469px
  2403. type: header
  2404. width: 50.4
  2405. header_hall:
  2406. background_color: rgba(0, 0, 0, 0)
  2407. header:
  2408. size: 20
  2409. title: 'Hall '
  2410. weight: '400'
  2411. height: 27.4
  2412. left: 710px
  2413. 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=cscryo__ControlSystem_DPS__310_MAG_Magnetbetrieb__15,cscryo__ControlSystem_DPS__310_MAG_Magnetbetrieb__18,cscryo__ControlSystem_DPS__310_MAG_Magnetbetrieb__21,cscryo__ControlSystem_DPS__310_MAG_Magnetbetrieb__24,cscryo__ControlSystem_DPS__310_MAG_Magnetbetrieb__27,cscryo__ControlSystem_DPS__310_MAG_Magnetbetrieb__30,cscryo__ControlSystem_DPS__310_MAG_Magnetbetrieb__33,cscryo__ControlSystem_DPS__310_MAG_Magnetbetrieb__36,cscryo__ControlSystem_DPS__310_MAG_Magnetbetrieb__39,cscryo__ControlSystem_DPS__310_MAG_Magnetbetrieb__42&bar_axis_range=0:0&K_axis_range=0:300&infomod=legend&history_id=1549371845444
  2414. top: 497px
  2415. type: header
  2416. width: 49.4
  2417. header_hallc:
  2418. background_color: rgba(0, 0, 0, 0)
  2419. header:
  2420. size: 20
  2421. title: 'Hall_c '
  2422. weight: '400'
  2423. height: 26.4
  2424. left: 873px
  2425. 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=cscps__ControlSystem_CPS__320_MAG_Magnetfeld__3,cscps__ControlSystem_CPS__320_MAG_Magnetfeld__9,cscps__ControlSystem_CPS__320_MAG_Magnetfeld__15,cscps__ControlSystem_CPS__320_MAG_Magnetfeld__21,cscps__ControlSystem_CPS__320_MAG_Magnetfeld__24,cscps__ControlSystem_CPS__320_MAG_Magnetfeld__27,cscps__ControlSystem_CPS__320_MAG_Magnetfeld__30,cscps__ControlSystem_CPS__320_MAG_Magnetfeld__33,cscps__ControlSystem_CPS__320_MAG_Magnetfeld__36&bar_axis_range=0:0&K_axis_range=0:300&infomod=legend&history_id=1549371794859
  2426. top: 497px
  2427. type: header
  2428. width: 50.4
  2429. header_halldet:
  2430. background_color: rgba(0, 0, 0, 0)
  2431. header:
  2432. size: 18
  2433. title: 'Hall_DET '
  2434. weight: '400'
  2435. height: 23.4
  2436. left: 1820px
  2437. 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__25,fpd__katrin_rep__2__26&bar_axis_range=0:0&K_axis_range=0:300&infomod=legend&history_id=1549367875471
  2438. top: 492px
  2439. type: header
  2440. width: 77.4
  2441. header_hallmos:
  2442. background_color: rgba(0, 0, 0, 0)
  2443. header:
  2444. size: 14
  2445. title: 'Hall_MoS '
  2446. weight: '400'
  2447. height: 20.4
  2448. left: 1418px
  2449. 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=csmos__ControlSystem_MoS__440KRYO_Anlage__6,csmos__ControlSystem_MoS__440KRYO_Anlage__9&bar_axis_range=0:0&K_axis_range=0:300&infomod=legend&history_id=1549372119669
  2450. top: 868px
  2451. type: header
  2452. width: 66.4
  2453. header_hallpch:
  2454. background_color: rgba(0, 0, 0, 0)
  2455. header:
  2456. size: 18
  2457. title: 'Hall_pch '
  2458. weight: '400'
  2459. height: 21.4
  2460. left: 1736px
  2461. 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__8,fpd__katrin_rep__2__9&bar_axis_range=0:0&K_axis_range=0:300&infomod=legend&history_id=1549367906624
  2462. top: 490px
  2463. type: header
  2464. width: 75.4
  2465. header_hallps1:
  2466. background_color: rgba(0, 0, 0, 0)
  2467. header:
  2468. size: 18
  2469. title: 'Hall_ps1 '
  2470. weight: '400'
  2471. height: 27.4
  2472. left: 1002px
  2473. 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__0,csps__ControlSystem_PS__410KRYO_Magnete__3&bar_axis_range=0:0&K_axis_range=0:300&infomod=legend&history_id=1549366980001
  2474. top: 496px
  2475. type: header
  2476. width: 71.4
  2477. header_hallps2:
  2478. background_color: rgba(0, 0, 0, 0)
  2479. header:
  2480. size: 18
  2481. title: 'Hall_ps2 '
  2482. weight: '400'
  2483. height: 24.4
  2484. left: 1102px
  2485. 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__6,csps__ControlSystem_PS__410KRYO_Magnete__9&bar_axis_range=0:0&K_axis_range=0:300&infomod=legend&history_id=1549367694693
  2486. top: 497px
  2487. type: header
  2488. width: 72.4
  2489. header_hallrs:
  2490. background_color: rgba(0, 0, 0, 0)
  2491. header:
  2492. size: 20
  2493. title: 'Hall_rs '
  2494. weight: '400'
  2495. height: 24.4
  2496. left: 172px
  2497. 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=csrear__ControlSystem_REAR__110_MAG_Magnetbetrieb__3,csrear__ControlSystem_REAR__110_MAG_Magnetbetrieb__6&bar_axis_range=0:0&K_axis_range=0:300&infomod=legend&history_id=1549371958108
  2498. top: 496px
  2499. type: header
  2500. width: 69.4
  2501. header_hallw:
  2502. background_color: rgba(0, 0, 0, 0)
  2503. header:
  2504. size: 20
  2505. title: 'Hall_w '
  2506. weight: '400'
  2507. height: 27.4
  2508. left: 431px
  2509. 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=cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__0,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__3,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__6,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__9,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__12,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__15,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__18,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__21,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__24,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__27,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__30,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__33,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__36,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__39&bar_axis_range=0:0&K_axis_range=0:300&infomod=legend&history_id=1549371914644
  2510. top: 495px
  2511. type: header
  2512. width: 68.4
  2513. header_hor:
  2514. background_color: rgba(0, 0, 0, 0)
  2515. header:
  2516. size: 16
  2517. title: 'Hor. '
  2518. weight: '700'
  2519. height: 26.4
  2520. left: 1189px
  2521. top: 269px
  2522. type: header
  2523. width: 49.4
  2524. header_imag:
  2525. background_color: rgba(0, 0, 0, 0)
  2526. header:
  2527. size: 24
  2528. title: 'I_mag '
  2529. weight: '700'
  2530. height: 36.4
  2531. left: 6px
  2532. titlelink: http://katrin.kit.edu/adei-katrin/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=21600&module=graph&virtual=srctree&srctree=fpd__katrin_rep__0__153,fpd__katrin_rep__0__158,aircoils__aircoils_rep__0__82,aircoils__aircoils_rep__0__83,cstmagnet__ControlSystem_Magnet__800_MAG_MAG_Control__0,cstmagnet__ControlSystem_Magnet__800_MAG_MAG_Control__27,cstmagnet__ControlSystem_Magnet__800_MAG_MAG_Control__33,cstmagnet__ControlSystem_Magnet__800_MAG_MAG_Control__39,cstmagnet__ControlSystem_Magnet__800_MAG_MAG_Control__69,cstmagnet__ControlSystem_Magnet__800_MAG_MAG_Control__84,cstmagnet__ControlSystem_Magnet__800_MAG_MAG_Control__99,cstmagnet__ControlSystem_Magnet__800_MAG_MAG_Control__114,cstmagnet__ControlSystem_Magnet__800_MAG_MAG_Control__129,cstmagnet__ControlSystem_Magnet__800_MAG_MAG_Control__144&format=xls&mT_axis_range=-407.7465:380.9859&A_axis_range=-54.85924:217.6010&infomod=legend&history_id=1526394348216
  2533. top: 620px
  2534. type: header
  2535. width: 74.4
  2536. header_ipsu:
  2537. background_color: rgba(0, 0, 0, 0)
  2538. header:
  2539. size: 24
  2540. title: 'I_psu '
  2541. weight: '700'
  2542. height: 33.4
  2543. left: 9px
  2544. top: 580px
  2545. type: header
  2546. width: 74.4
  2547. header_loopscps:
  2548. background_color: rgba(0, 0, 0, 0)
  2549. header:
  2550. size: 16
  2551. title: 'LOOPs-CPS '
  2552. weight: '700'
  2553. height: 24.4
  2554. left: 6px
  2555. titlelink: http://bora-loops-cps.kaas.kit.edu/
  2556. top: 300px
  2557. type: header
  2558. width: 95.4
  2559. header_loopsdps:
  2560. background_color: rgba(0, 0, 0, 0)
  2561. header:
  2562. size: 16
  2563. title: 'LOOPs-DPS '
  2564. weight: '700'
  2565. height: 21.4
  2566. left: 6px
  2567. titlelink: http://bora-loops-dps.kaas.kit.edu/
  2568. top: 274px
  2569. type: header
  2570. width: 94.4
  2571. header_loopswgts:
  2572. background_color: rgba(0, 0, 0, 0)
  2573. header:
  2574. size: 16
  2575. title: 'LOOPs-WGTS '
  2576. weight: '700'
  2577. height: 24.4
  2578. left: 5px
  2579. titlelink: http://bora-loops-wgts.kaas.kit.edu/
  2580. top: 244px
  2581. type: header
  2582. width: 121.4
  2583. header_m1m2m3m4m5:
  2584. background_color: rgba(0, 0, 0, 0)
  2585. header:
  2586. size: 18
  2587. title: 'M1_M2_M3_M4_M5 '
  2588. weight: '700'
  2589. height: 19.4
  2590. left: 648px
  2591. top: 551.133px
  2592. type: header
  2593. width: 169.4
  2594. header_m2m3:
  2595. background_color: rgba(0, 0, 0, 0)
  2596. header:
  2597. size: 18
  2598. title: 'M2+M3 '
  2599. weight: '700'
  2600. height: 20.4
  2601. left: 398px
  2602. top: 551.133px
  2603. type: header
  2604. width: 75.4
  2605. header_m5m4m1:
  2606. background_color: rgba(0, 0, 0, 0)
  2607. header:
  2608. size: 18
  2609. title: 'M5+M4+M1 '
  2610. weight: '700'
  2611. height: 20.4
  2612. left: 231px
  2613. top: 551.133px
  2614. type: header
  2615. width: 110.4
  2616. header_m7m6:
  2617. background_color: rgba(0, 0, 0, 0)
  2618. header:
  2619. size: 18
  2620. title: 'M7+M6 '
  2621. weight: '700'
  2622. height: 20.4
  2623. left: 533px
  2624. top: 552.133px
  2625. type: header
  2626. width: 69.4
  2627. header_mos:
  2628. background_color: rgba(0, 0, 0, 0)
  2629. header:
  2630. size: 28
  2631. title: 'MoS '
  2632. weight: '700'
  2633. height: 40.4
  2634. left: 1417px
  2635. titlelink: http://bora-mos.kaas.kit.edu/
  2636. top: 698px
  2637. type: header
  2638. width: 64.4
  2639. header_pch:
  2640. background_color: rgba(255, 255, 255, 0.498)
  2641. header:
  2642. size: 28
  2643. title: 'PCH '
  2644. weight: '700'
  2645. height: 33.4
  2646. left: 1763.98px
  2647. 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__0__102,fpd__katrin_rep__0__108,fpd__katrin_rep__0__153,fpd__katrin_rep__0__154,fpd__katrin_rep__0__155,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=1549368164636
  2648. top: 357px
  2649. type: header
  2650. width: 58.4
  2651. header_ps1:
  2652. background_color: rgba(0, 0, 0, 0)
  2653. header:
  2654. size: 28
  2655. title: 'PS1 '
  2656. weight: '700'
  2657. height: 34.4
  2658. left: 989px
  2659. 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
  2660. top: 346px
  2661. type: header
  2662. width: 56.4
  2663. header_ps2:
  2664. background_color: rgba(255, 255, 255, 0.498)
  2665. header:
  2666. size: 28
  2667. title: 'PS2 '
  2668. weight: '700'
  2669. height: 39.4
  2670. left: 1098px
  2671. 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
  2672. top: 345px
  2673. type: header
  2674. width: 60.4
  2675. header_rs:
  2676. background_color: rgba(0, 0, 0, 0)
  2677. header:
  2678. size: 28
  2679. title: 'RS '
  2680. weight: '700'
  2681. height: 34.4
  2682. left: 152px
  2683. titlelink: http://bora-rs.kaas.kit.edu/
  2684. top: 337px
  2685. type: header
  2686. width: 51.4
  2687. header_s:
  2688. background_color: rgba(0, 0, 0, 0)
  2689. header:
  2690. size: 24
  2691. title: 'S '
  2692. weight: '700'
  2693. height: 33.4
  2694. left: 1363px
  2695. 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=csmos__ControlSystem_MoS__440KRYO_Anlage__36,csmos__ControlSystem_MoS__440KRYO_Anlage__51,csmos__ControlSystem_MoS__440KRYO_Anlage__54&bar_axis_range=0:0&K_axis_range=0:300&infomod=legend&history_id=1552915470506
  2696. top: 717px
  2697. type: header
  2698. width: 51.4
  2699. header_sds:
  2700. background_color: rgba(0, 0, 0, 0)
  2701. header:
  2702. size: 28
  2703. title: 'SDS '
  2704. weight: '700'
  2705. height: 40.4
  2706. left: 1412px
  2707. titlelink: https://status-sds.kaas.kit.edu/
  2708. top: 128px
  2709. type: header
  2710. width: 51.4
  2711. header_sds-scmagnets:
  2712. background_color: rgba(0, 0, 0, 0)
  2713. header:
  2714. size: 18
  2715. title: 'SDS sc-magnets '
  2716. weight: '700'
  2717. height: 29.4
  2718. left: 1769px
  2719. titlelink: http://bora-sds-magnets.kaas.kit.edu/
  2720. top: 235px
  2721. type: header
  2722. width: 155.4
  2723. header_status-of-the-katrin-magnets:
  2724. background_color: rgba(0, 0, 0, 0)
  2725. header:
  2726. size: 40
  2727. title: 'Status of the KATRIN magnets '
  2728. weight: '700'
  2729. height: 61.4
  2730. left: 602px
  2731. top: 5px
  2732. type: header
  2733. width: 620.4
  2734. header_t2inlet:
  2735. background_color: rgba(0, 0, 0, 0)
  2736. header:
  2737. size: 16
  2738. title: 'T2-inlet: '
  2739. weight: '400'
  2740. height: 26.4
  2741. left: 143px
  2742. top: 243px
  2743. type: header
  2744. width: 63.4
  2745. header_tcldps:
  2746. background_color: rgba(0, 0, 0, 0)
  2747. header:
  2748. size: 16
  2749. title: 'T_CL_dps '
  2750. weight: '400'
  2751. height: 23.4
  2752. left: 695px
  2753. 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=cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__0,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__3,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__6,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__9,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__12,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__15,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__18,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__21,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__24,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__27&bar_axis_range=0:0&K_axis_range=0:300&infomod=legend&history_id=1549372043501
  2754. top: 432px
  2755. type: header
  2756. width: 73.4
  2757. header_umag:
  2758. background_color: rgba(0, 0, 0, 0)
  2759. header:
  2760. size: 22
  2761. title: 'U_mag '
  2762. weight: '700'
  2763. height: 31.4
  2764. left: 5px
  2765. top: 656px
  2766. type: header
  2767. width: 75.4
  2768. header_ver:
  2769. background_color: rgba(0, 0, 0, 0)
  2770. header:
  2771. size: 16
  2772. title: 'Ver. '
  2773. weight: '700'
  2774. height: 26.4
  2775. left: 1127.23px
  2776. top: 267px
  2777. type: header
  2778. width: 50.4
  2779. header_wgts:
  2780. background_color: rgba(0, 0, 0, 0)
  2781. header:
  2782. size: 28
  2783. title: 'WGTS '
  2784. weight: '700'
  2785. height: 34.4
  2786. left: 394px
  2787. titlelink: http://bora-wgts.kaas.kit.edu/
  2788. top: 336.983px
  2789. type: header
  2790. width: 98.4