nitrogen.data.ln.ts 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. export const preFanMonitorData = [
  73. {
  74. title: '运行状态',
  75. code: 'operation_shutdown',
  76. unit: '',
  77. },
  78. {
  79. title: '运行时间',
  80. code: 'operation_hours',
  81. unit: 'h',
  82. },
  83. {
  84. title: '油压未建立故障',
  85. code: 'oil_pressure_not_established',
  86. unit: 'signal',
  87. },
  88. {
  89. title: '排气压力超限故障',
  90. code: 'exhaust_pressure_exceeding_limit',
  91. unit: 'signal',
  92. },
  93. {
  94. title: '相序故障',
  95. code: 'phase-sequence_protection',
  96. unit: 'signal',
  97. },
  98. {
  99. title: '风机1过载故障',
  100. code: 'fan1_overload',
  101. unit: 'signal',
  102. },
  103. {
  104. title: '风机2过载故障',
  105. code: 'fan2_overload',
  106. unit: 'signal',
  107. },
  108. {
  109. title: '风机3过载故障',
  110. code: 'fan3_overload',
  111. unit: 'signal',
  112. },
  113. {
  114. title: '风机4过载故障',
  115. code: 'fan4_overload',
  116. unit: 'signal',
  117. },
  118. {
  119. title: '高压柜故障',
  120. code: 'hvc_malfunction',
  121. unit: 'signal',
  122. },
  123. ];