nitrogen.dataSw.ts 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491
  1. export const monitorDataGroupArr = [[1, 2, 3, 4]];
  2. export const modelMonitor = [
  3. {
  4. type: 'list',
  5. title: '空压机',
  6. stateHeader: [],
  7. key: 'PRE',
  8. list: [
  9. {
  10. title: '加载压力',
  11. code: '_CPR_LoadPre',
  12. unit: 'MPa',
  13. },
  14. {
  15. title: '卸载压力',
  16. code: '_CPR_UnLoadPre',
  17. unit: 'MPa',
  18. child: [],
  19. },
  20. {
  21. title: `机头温度`,
  22. code: `_CPR_HeadTemp`,
  23. unit: '℃',
  24. child: [],
  25. },
  26. {
  27. title: `冷却温度`,
  28. code: `_CPR_CoolantTemp`,
  29. unit: '℃',
  30. child: [],
  31. },
  32. {
  33. title: `排气温度`,
  34. code: `_CPR_ExhaustTemp`,
  35. unit: '℃',
  36. child: [],
  37. },
  38. {
  39. title: '加载时间',
  40. code: '_CPR_LoadTime',
  41. unit: 'h',
  42. child: [],
  43. },
  44. {
  45. title: '排气压力',
  46. code: '_CPR_ExhaustPre',
  47. unit: 'MPa',
  48. child: [],
  49. },
  50. {
  51. code: 'signal',
  52. child: [
  53. {
  54. title: `加载卸载`,
  55. code: `_CPR_LoadorUnload`,
  56. isWaring: false,
  57. },
  58. {
  59. title: `状态`,
  60. code: `_Status`,
  61. isWaring: false,
  62. },
  63. ],
  64. },
  65. ],
  66. },
  67. {
  68. type: 'list',
  69. title: '储气罐',
  70. key: 'PRE',
  71. stateHeader: [],
  72. hideInGroup: [],
  73. list: [
  74. {
  75. title: '风包温度',
  76. code: '_VLS_Temp',
  77. unit: '℃',
  78. },
  79. ],
  80. },
  81. ];
  82. export const totalData = [
  83. {
  84. title: '总出风管压力',
  85. code: 'PRE_ExitPressure',
  86. unit: 'bar',
  87. },
  88. ];
  89. export const leftMonitor = [
  90. {
  91. type: 'list',
  92. title: '压风机1',
  93. stateHeader: [],
  94. children: [
  95. {
  96. title: '',
  97. childTitle: ['1#压风机'],
  98. key: ['PRE1'],
  99. list: [
  100. {
  101. title: `故障信号1`,
  102. code: `_FaultSignal1`,
  103. type: 'warning',
  104. },
  105. {
  106. title: `故障信号2`,
  107. code: `_FaultSignal2`,
  108. type: 'warning',
  109. },
  110. {
  111. title: `A相绕组超温`,
  112. code: `_MOT_PhaseATempAlarm`,
  113. type: 'warning',
  114. },
  115. {
  116. title: `B相绕组超温`,
  117. code: `_MOT_PhaseBTempAlarm`,
  118. type: 'warning',
  119. },
  120. {
  121. title: `C相绕组超温`,
  122. code: `_MOT_PhaseCTempAlarm`,
  123. type: 'warning',
  124. },
  125. {
  126. title: '电机启动失败',
  127. code: '_MOT_StartFail',
  128. type: 'warning',
  129. },
  130. {
  131. title: '电机停止失败',
  132. code: '_MOT_StopFail',
  133. type: 'warning',
  134. },
  135. {
  136. title: '电机运行返回',
  137. code: '_MOT_RunReturn',
  138. type: 'warning',
  139. },
  140. {
  141. title: '综保故障',
  142. code: '_MOT_CompProtFault',
  143. type: 'warning',
  144. },
  145. {
  146. title: '接地故障',
  147. code: '_MOT_EarthFault',
  148. type: 'warning',
  149. },
  150. {
  151. title: '过流故障',
  152. code: '_MOT_OverCurrentFault',
  153. type: 'warning',
  154. },
  155. {
  156. title: `主机本机`,
  157. code: `_HostorLoc`,
  158. type: 'signal',
  159. },
  160. {
  161. title: '总运行时间(h)',
  162. code: '_MOT_TotalRunTime',
  163. type: '',
  164. },
  165. {
  166. title: '有功功率(kW)',
  167. code: '_MOT_Power',
  168. type: '',
  169. },
  170. {
  171. title: 'A相绕组温度(℃)',
  172. code: '_MOT_PhaseATemp',
  173. type: '',
  174. },
  175. {
  176. title: 'B相绕组温度(℃)',
  177. code: '_MOT_PhaseBTemp',
  178. type: '',
  179. },
  180. {
  181. title: 'C相绕组温度(℃)',
  182. code: '_MOT_PhaseCTemp',
  183. type: '',
  184. },
  185. ],
  186. },
  187. ],
  188. },
  189. {
  190. type: 'list',
  191. title: '压风机2',
  192. stateHeader: [],
  193. children: [
  194. {
  195. title: '',
  196. childTitle: ['2#压风机'],
  197. key: ['PRE2'],
  198. list: [
  199. {
  200. title: `故障信号1`,
  201. code: `_FaultSignal1`,
  202. type: 'warning',
  203. },
  204. {
  205. title: `故障信号2`,
  206. code: `_FaultSignal2`,
  207. type: 'warning',
  208. },
  209. {
  210. title: `A相绕组超温`,
  211. code: `_MOT_PhaseATempAlarm`,
  212. type: 'warning',
  213. },
  214. {
  215. title: `B相绕组超温`,
  216. code: `_MOT_PhaseBTempAlarm`,
  217. type: 'warning',
  218. },
  219. {
  220. title: `C相绕组超温`,
  221. code: `_MOT_PhaseCTempAlarm`,
  222. type: 'warning',
  223. },
  224. {
  225. title: '电机启动失败',
  226. code: '_MOT_StartFail',
  227. type: 'warning',
  228. },
  229. {
  230. title: '电机停止失败',
  231. code: '_MOT_StopFail',
  232. type: 'warning',
  233. },
  234. {
  235. title: '电机运行返回',
  236. code: '_MOT_RunReturn',
  237. type: 'warning',
  238. },
  239. {
  240. title: '综保故障',
  241. code: '_MOT_CompProtFault',
  242. type: 'warning',
  243. },
  244. {
  245. title: '接地故障',
  246. code: '_MOT_EarthFault',
  247. type: 'warning',
  248. },
  249. {
  250. title: '过流故障',
  251. code: '_MOT_OverCurrentFault',
  252. type: 'warning',
  253. },
  254. {
  255. title: `主机本机`,
  256. code: `_HostorLoc`,
  257. type: 'signal',
  258. },
  259. {
  260. title: '总运行时间(h)',
  261. code: '_MOT_TotalRunTime',
  262. type: '',
  263. },
  264. {
  265. title: '有功功率(kW)',
  266. code: '_MOT_Power',
  267. type: '',
  268. },
  269. {
  270. title: 'A相绕组温度(℃)',
  271. code: '_MOT_PhaseATemp',
  272. type: '',
  273. },
  274. {
  275. title: 'B相绕组温度(℃)',
  276. code: '_MOT_PhaseBTemp',
  277. type: '',
  278. },
  279. {
  280. title: 'C相绕组温度(℃)',
  281. code: '_MOT_PhaseCTemp',
  282. type: '',
  283. },
  284. ],
  285. },
  286. ],
  287. },
  288. ];
  289. export const rightMonitor = [
  290. {
  291. type: 'list',
  292. title: '压风机3',
  293. stateHeader: [],
  294. children: [
  295. {
  296. title: '',
  297. childTitle: ['3#压风机'],
  298. key: ['PRE3'],
  299. list: [
  300. {
  301. title: `故障信号1`,
  302. code: `_FaultSignal1`,
  303. type: 'warning',
  304. },
  305. {
  306. title: `故障信号2`,
  307. code: `_FaultSignal2`,
  308. type: 'warning',
  309. },
  310. {
  311. title: `A相绕组超温`,
  312. code: `_MOT_PhaseATempAlarm`,
  313. type: 'warning',
  314. },
  315. {
  316. title: `B相绕组超温`,
  317. code: `_MOT_PhaseBTempAlarm`,
  318. type: 'warning',
  319. },
  320. {
  321. title: `C相绕组超温`,
  322. code: `_MOT_PhaseCTempAlarm`,
  323. type: 'warning',
  324. },
  325. {
  326. title: '电机启动失败',
  327. code: '_MOT_StartFail',
  328. type: 'warning',
  329. },
  330. {
  331. title: '电机停止失败',
  332. code: '_MOT_StopFail',
  333. type: 'warning',
  334. },
  335. {
  336. title: '电机运行返回',
  337. code: '_MOT_RunReturn',
  338. type: 'warning',
  339. },
  340. {
  341. title: '综保故障',
  342. code: '_MOT_CompProtFault',
  343. type: 'warning',
  344. },
  345. {
  346. title: '接地故障',
  347. code: '_MOT_EarthFault',
  348. type: 'warning',
  349. },
  350. {
  351. title: '过流故障',
  352. code: '_MOT_OverCurrentFault',
  353. type: 'warning',
  354. },
  355. {
  356. title: `主机本机`,
  357. code: `_HostorLoc`,
  358. type: 'signal',
  359. },
  360. {
  361. title: '总运行时间(h)',
  362. code: '_MOT_TotalRunTime',
  363. type: '',
  364. },
  365. {
  366. title: '有功功率(kW)',
  367. code: '_MOT_Power',
  368. type: '',
  369. },
  370. {
  371. title: 'A相绕组温度(℃)',
  372. code: '_MOT_PhaseATemp',
  373. type: '',
  374. },
  375. {
  376. title: 'B相绕组温度(℃)',
  377. code: '_MOT_PhaseBTemp',
  378. type: '',
  379. },
  380. {
  381. title: 'C相绕组温度(℃)',
  382. code: '_MOT_PhaseCTemp',
  383. type: '',
  384. },
  385. ],
  386. },
  387. ],
  388. },
  389. {
  390. type: 'list',
  391. title: '压风机4',
  392. stateHeader: [],
  393. children: [
  394. {
  395. title: '',
  396. childTitle: ['4#压风机'],
  397. key: ['PRE4'],
  398. list: [
  399. {
  400. title: `故障信号1`,
  401. code: `_FaultSignal1`,
  402. type: 'warning',
  403. },
  404. {
  405. title: `故障信号2`,
  406. code: `_FaultSignal2`,
  407. type: 'warning',
  408. },
  409. {
  410. title: `A相绕组超温`,
  411. code: `_MOT_PhaseATempAlarm`,
  412. type: 'warning',
  413. },
  414. {
  415. title: `B相绕组超温`,
  416. code: `_MOT_PhaseBTempAlarm`,
  417. type: 'warning',
  418. },
  419. {
  420. title: `C相绕组超温`,
  421. code: `_MOT_PhaseCTempAlarm`,
  422. type: 'warning',
  423. },
  424. {
  425. title: '电机启动失败',
  426. code: '_MOT_StartFail',
  427. type: 'warning',
  428. },
  429. {
  430. title: '电机停止失败',
  431. code: '_MOT_StopFail',
  432. type: 'warning',
  433. },
  434. {
  435. title: '电机运行返回',
  436. code: '_MOT_RunReturn',
  437. type: 'warning',
  438. },
  439. {
  440. title: '综保故障',
  441. code: '_MOT_CompProtFault',
  442. type: 'warning',
  443. },
  444. {
  445. title: '接地故障',
  446. code: '_MOT_EarthFault',
  447. type: 'warning',
  448. },
  449. {
  450. title: '过流故障',
  451. code: '_MOT_OverCurrentFault',
  452. type: 'warning',
  453. },
  454. {
  455. title: `主机本机`,
  456. code: `_HostorLoc`,
  457. type: 'signal',
  458. },
  459. {
  460. title: '总运行时间(h)',
  461. code: '_MOT_TotalRunTime',
  462. type: '',
  463. },
  464. {
  465. title: '有功功率(kW)',
  466. code: '_MOT_Power',
  467. type: '',
  468. },
  469. {
  470. title: 'A相绕组温度(℃)',
  471. code: '_MOT_PhaseATemp',
  472. type: '',
  473. },
  474. {
  475. title: 'B相绕组温度(℃)',
  476. code: '_MOT_PhaseBTemp',
  477. type: '',
  478. },
  479. {
  480. title: 'C相绕组温度(℃)',
  481. code: '_MOT_PhaseCTemp',
  482. type: '',
  483. },
  484. ],
  485. },
  486. ],
  487. },
  488. ];
  489. export const detailCtrl = [];