nitrogen.data.new.ts 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. export const nitrogenMonitorData = [
  2. {
  3. title: '管道温度',
  4. code: 'pipe_temperature',
  5. unit: '℃',
  6. },
  7. {
  8. title: '管道压力',
  9. code: 'pipe_pressure',
  10. unit: 'MPa',
  11. },
  12. {
  13. title: '氮气流量',
  14. code: 'nitrogen_flow_rate',
  15. unit: 'm³',
  16. },
  17. {
  18. title: '氮气浓度',
  19. code: 'nitrogen_concentration',
  20. unit: '%',
  21. },
  22. {
  23. title: '电动排氮阀开度',
  24. code: 'nitrogen_discharge_opening',
  25. unit: '--',
  26. },
  27. ];
  28. export const preMonitorList = [
  29. {
  30. title: `主机温度`,
  31. code: `host_temperature`,
  32. unit: '℃',
  33. child: [],
  34. },
  35. {
  36. title: `排气压力`,
  37. code: `exhaust_pressure`,
  38. unit: 'MPa',
  39. child: [],
  40. },
  41. {
  42. title: `管道温度`,
  43. code: `pipe_temperature`,
  44. unit: '℃',
  45. child: [],
  46. },
  47. {
  48. title: `管道压力`,
  49. code: `pipe_pressure`,
  50. unit: 'MPa',
  51. child: [],
  52. },
  53. {
  54. title: `电机定子温度`,
  55. code: `stator_temperature`,
  56. unit: '℃',
  57. child: [],
  58. },
  59. {
  60. title: `电机前端轴承温度`,
  61. code: `front_axle_temperature`,
  62. unit: '℃',
  63. child: [],
  64. },
  65. {
  66. title: `电机后端轴承温度`,
  67. code: `rear_axle_temperature`,
  68. unit: '℃',
  69. child: [],
  70. },
  71. // {
  72. // code: 'signal',
  73. // child: [
  74. // {
  75. // title: `加载/卸载:`,
  76. // code: `LoadorUnload`,
  77. // isFault: -1,
  78. // },
  79. // {
  80. // title: `控制方式:`,
  81. // code: `CtrlMode`,
  82. // isFault: -2,
  83. // },
  84. // ],
  85. // },
  86. // {
  87. // code: 'signal',
  88. // child: [
  89. // {
  90. // title: `运行信号:`,
  91. // code: `Status`,
  92. // isFault: false,
  93. // },
  94. // {
  95. // title: `排气压力过高:`,
  96. // code: `ExhaustPreHighFault`,
  97. // isFault: true,
  98. // },
  99. // ],
  100. // },
  101. ];
  102. export const preFanMonitorData = [
  103. {
  104. title: '运行状态',
  105. code: 'operation_shutdown',
  106. unit: '',
  107. },
  108. {
  109. title: '运行时间',
  110. code: 'operation_hours',
  111. unit: 'h',
  112. },
  113. {
  114. title: '油压未建立故障',
  115. code: 'oil_pressure_not_established',
  116. unit: 'signal',
  117. },
  118. {
  119. title: '排气压力超限故障',
  120. code: 'exhaust_pressure_exceeding_limit',
  121. unit: 'signal',
  122. },
  123. {
  124. title: '相序故障',
  125. code: 'phase-sequence_protection',
  126. unit: 'signal',
  127. },
  128. {
  129. title: '风机1过载故障',
  130. code: 'fan1_overload',
  131. unit: 'signal',
  132. },
  133. {
  134. title: '风机2过载故障',
  135. code: 'fan2_overload',
  136. unit: 'signal',
  137. },
  138. {
  139. title: '风机3过载故障',
  140. code: 'fan3_overload',
  141. unit: 'signal',
  142. },
  143. {
  144. title: '风机4过载故障',
  145. code: 'fan4_overload',
  146. unit: 'signal',
  147. },
  148. {
  149. title: '高压柜故障',
  150. code: 'hvc_malfunction',
  151. unit: 'signal',
  152. },
  153. ];