nitrogen.data.yjl.ts 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449
  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. },
  60. ],
  61. },
  62. {
  63. type: 'list',
  64. title: '储气罐',
  65. key: 'PRE',
  66. stateHeader: [],
  67. list: [],
  68. },
  69. ];
  70. export const totalData = [
  71. {
  72. title: '总出风管流量',
  73. code: 'TotalOutPipeFlow',
  74. unit: 'm³/h',
  75. },
  76. {
  77. title: '总出风管压力',
  78. code: 'TotalOutPipePre',
  79. unit: 'bar',
  80. },
  81. ];
  82. export const leftMonitor = [
  83. {
  84. type: 'list',
  85. title: '压风机1',
  86. stateHeader: [],
  87. children: [
  88. {
  89. title: '',
  90. childTitle: ['1#压风机'],
  91. key: ['PRE1'],
  92. list: [
  93. {
  94. title: `启动失败`,
  95. code: `_MOT_StartFail`,
  96. type: 'warning',
  97. },
  98. {
  99. title: `停止失败`,
  100. code: `_MOT_StopFail`,
  101. type: 'warning',
  102. },
  103. {
  104. title: `报警信号`,
  105. code: `_AlamSignal`,
  106. type: 'warning',
  107. },
  108. {
  109. title: `故障信号`,
  110. code: `_FaultSignal`,
  111. type: 'warning',
  112. },
  113. {
  114. title: `B相绕组超温`,
  115. code: `_MOT_PhaseBTempAlarm`,
  116. type: 'warning',
  117. },
  118. {
  119. title: `C相绕组超温`,
  120. code: `_MOT_PhaseCTempAlarm`,
  121. type: 'warning',
  122. },
  123. {
  124. title: '电机启动失败',
  125. code: '_MOT_StartFail',
  126. type: 'warning',
  127. },
  128. {
  129. title: '电机停止失败',
  130. code: '_MOT_StopFail',
  131. type: 'warning',
  132. },
  133. {
  134. title: '电机运行返回',
  135. code: '_MOT_RunReturn',
  136. type: 'warning',
  137. },
  138. {
  139. title: `A相绕组超温`,
  140. code: `_MOT_PhaseATempAlarm`,
  141. type: 'warning',
  142. },
  143. {
  144. title: `主机本机`,
  145. code: `_HostorLoc`,
  146. type: 'signal',
  147. },
  148. {
  149. title: '总运行时间(h)',
  150. code: '_MOT_TotalRunTime',
  151. type: '',
  152. },
  153. {
  154. title: 'A相绕组温度(℃)',
  155. code: '_MOT_PhaseATemp',
  156. type: '',
  157. },
  158. {
  159. title: 'B相绕组温度(℃)',
  160. code: '_MOT_PhaseBTemp',
  161. type: '',
  162. },
  163. {
  164. title: 'C相绕组温度(℃)',
  165. code: '_MOT_PhaseCTemp',
  166. type: '',
  167. },
  168. ],
  169. },
  170. ],
  171. },
  172. {
  173. type: 'list',
  174. title: '压风机2',
  175. stateHeader: [],
  176. children: [
  177. {
  178. title: '',
  179. childTitle: ['2#压风机'],
  180. key: ['PRE2'],
  181. list: [
  182. {
  183. title: `启动失败`,
  184. code: `_MOT_StartFail`,
  185. type: 'warning',
  186. },
  187. {
  188. title: `停止失败`,
  189. code: `_MOT_StopFail`,
  190. type: 'warning',
  191. },
  192. {
  193. title: `报警信号`,
  194. code: `_AlamSignal`,
  195. type: 'warning',
  196. },
  197. {
  198. title: `故障信号`,
  199. code: `_FaultSignal`,
  200. type: 'warning',
  201. },
  202. {
  203. title: `B相绕组超温`,
  204. code: `_MOT_PhaseBTempAlarm`,
  205. type: 'warning',
  206. },
  207. {
  208. title: `C相绕组超温`,
  209. code: `_MOT_PhaseCTempAlarm`,
  210. type: 'warning',
  211. },
  212. {
  213. title: '电机启动失败',
  214. code: '_MOT_StartFail',
  215. type: 'warning',
  216. },
  217. {
  218. title: '电机停止失败',
  219. code: '_MOT_StopFail',
  220. type: 'warning',
  221. },
  222. {
  223. title: '电机运行返回',
  224. code: '_MOT_RunReturn',
  225. type: 'warning',
  226. },
  227. {
  228. title: `A相绕组超温`,
  229. code: `_MOT_PhaseATempAlarm`,
  230. type: 'warning',
  231. },
  232. {
  233. title: `主机本机`,
  234. code: `_HostorLoc`,
  235. type: 'signal',
  236. },
  237. {
  238. title: '总运行时间(h)',
  239. code: '_MOT_TotalRunTime',
  240. type: '',
  241. },
  242. {
  243. title: 'A相绕组温度(℃)',
  244. code: '_MOT_PhaseATemp',
  245. type: '',
  246. },
  247. {
  248. title: 'B相绕组温度(℃)',
  249. code: '_MOT_PhaseBTemp',
  250. type: '',
  251. },
  252. {
  253. title: 'C相绕组温度(℃)',
  254. code: '_MOT_PhaseCTemp',
  255. type: '',
  256. },
  257. ],
  258. },
  259. ],
  260. },
  261. ];
  262. export const rightMonitor = [
  263. {
  264. type: 'list',
  265. title: '压风机3',
  266. stateHeader: [],
  267. children: [
  268. {
  269. title: '',
  270. childTitle: ['3#压风机'],
  271. key: ['PRE3'],
  272. list: [
  273. {
  274. title: `启动失败`,
  275. code: `_MOT_StartFail`,
  276. type: 'warning',
  277. },
  278. {
  279. title: `停止失败`,
  280. code: `_MOT_StopFail`,
  281. type: 'warning',
  282. },
  283. {
  284. title: `报警信号`,
  285. code: `_AlamSignal`,
  286. type: 'warning',
  287. },
  288. {
  289. title: `故障信号`,
  290. code: `_FaultSignal`,
  291. type: 'warning',
  292. },
  293. {
  294. title: `B相绕组超温`,
  295. code: `_MOT_PhaseBTempAlarm`,
  296. type: 'warning',
  297. },
  298. {
  299. title: `C相绕组超温`,
  300. code: `_MOT_PhaseCTempAlarm`,
  301. type: 'warning',
  302. },
  303. {
  304. title: '电机启动失败',
  305. code: '_MOT_StartFail',
  306. type: 'warning',
  307. },
  308. {
  309. title: '电机停止失败',
  310. code: '_MOT_StopFail',
  311. type: 'warning',
  312. },
  313. {
  314. title: '电机运行返回',
  315. code: '_MOT_RunReturn',
  316. type: 'warning',
  317. },
  318. {
  319. title: `A相绕组超温`,
  320. code: `_MOT_PhaseATempAlarm`,
  321. type: 'warning',
  322. },
  323. {
  324. title: `主机本机`,
  325. code: `_HostorLoc`,
  326. type: 'signal',
  327. },
  328. {
  329. title: '总运行时间(h)',
  330. code: '_MOT_TotalRunTime',
  331. type: '',
  332. },
  333. {
  334. title: 'A相绕组温度(℃)',
  335. code: '_MOT_PhaseATemp',
  336. type: '',
  337. },
  338. {
  339. title: 'B相绕组温度(℃)',
  340. code: '_MOT_PhaseBTemp',
  341. type: '',
  342. },
  343. {
  344. title: 'C相绕组温度(℃)',
  345. code: '_MOT_PhaseCTemp',
  346. type: '',
  347. },
  348. ],
  349. },
  350. ],
  351. },
  352. {
  353. type: 'list',
  354. title: '压风机4',
  355. stateHeader: [],
  356. children: [
  357. {
  358. title: '',
  359. childTitle: ['4#压风机'],
  360. key: ['PRE4'],
  361. list: [
  362. {
  363. title: `启动失败`,
  364. code: `_MOT_StartFail`,
  365. type: 'warning',
  366. },
  367. {
  368. title: `停止失败`,
  369. code: `_MOT_StopFail`,
  370. type: 'warning',
  371. },
  372. {
  373. title: `报警信号`,
  374. code: `_AlamSignal`,
  375. type: 'warning',
  376. },
  377. {
  378. title: `故障信号`,
  379. code: `_FaultSignal`,
  380. type: 'warning',
  381. },
  382. {
  383. title: `B相绕组超温`,
  384. code: `_MOT_PhaseBTempAlarm`,
  385. type: 'warning',
  386. },
  387. {
  388. title: `C相绕组超温`,
  389. code: `_MOT_PhaseCTempAlarm`,
  390. type: 'warning',
  391. },
  392. {
  393. title: '电机启动失败',
  394. code: '_MOT_StartFail',
  395. type: 'warning',
  396. },
  397. {
  398. title: '电机停止失败',
  399. code: '_MOT_StopFail',
  400. type: 'warning',
  401. },
  402. {
  403. title: '电机运行返回',
  404. code: '_MOT_RunReturn',
  405. type: 'warning',
  406. },
  407. {
  408. title: `A相绕组超温`,
  409. code: `_MOT_PhaseATempAlarm`,
  410. type: 'warning',
  411. },
  412. {
  413. title: `主机本机`,
  414. code: `_HostorLoc`,
  415. type: 'signal',
  416. },
  417. {
  418. title: '总运行时间(h)',
  419. code: '_MOT_TotalRunTime',
  420. type: '',
  421. },
  422. {
  423. title: 'A相绕组温度(℃)',
  424. code: '_MOT_PhaseATemp',
  425. type: '',
  426. },
  427. {
  428. title: 'B相绕组温度(℃)',
  429. code: '_MOT_PhaseBTemp',
  430. type: '',
  431. },
  432. {
  433. title: 'C相绕组温度(℃)',
  434. code: '_MOT_PhaseCTemp',
  435. type: '',
  436. },
  437. ],
  438. },
  439. ],
  440. },
  441. ];
  442. export const detailCtrl = [];