nitrogen.data.dltj.ts 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. export const preMonitorList = [
  2. {
  3. title: `排气压力`,
  4. code: `ExhaustPre`,
  5. unit: 'MPa',
  6. child: [],
  7. },
  8. {
  9. title: `排气温度`,
  10. code: `ExhaustTemp`,
  11. unit: '℃',
  12. child: [],
  13. },
  14. {
  15. title: `加载时间`,
  16. code: `LoadTime`,
  17. unit: 'h',
  18. child: [],
  19. },
  20. {
  21. title: `运行时间`,
  22. code: `RunTime`,
  23. unit: 'h',
  24. child: [],
  25. },
  26. {
  27. code: 'signal',
  28. child: [
  29. {
  30. title: `加载/卸载:`,
  31. code: `LoadorUnload`,
  32. isFault: -1,
  33. },
  34. {
  35. title: `控制方式:`,
  36. code: `CtrlMode`,
  37. isFault: -2,
  38. },
  39. ],
  40. },
  41. {
  42. code: 'signal',
  43. child: [
  44. {
  45. title: `运行信号:`,
  46. code: `Status`,
  47. isFault: false,
  48. },
  49. {
  50. title: `排气压力过高:`,
  51. code: `ExhaustPreHighFault`,
  52. isFault: true,
  53. },
  54. ],
  55. },
  56. ];
  57. export const preFanMonitorData = [
  58. {
  59. title: '系统电压',
  60. code: 'SysVoltage',
  61. unit: 'V',
  62. },
  63. {
  64. title: '漏电闭锁',
  65. code: 'LeakageLock',
  66. unit: 'signal',
  67. },
  68. {
  69. title: '油压低故障',
  70. code: 'OilPressureLowFault',
  71. unit: 'signal',
  72. },
  73. {
  74. title: '相序故障',
  75. code: 'PhaseSequenceFault',
  76. unit: 'signal',
  77. },
  78. ];
  79. export const nitrogenMonitorData = [
  80. {
  81. title: '总累计流量',
  82. code: 'FluxTotal',
  83. unit: 'm³',
  84. },
  85. {
  86. title: '瞬时流量',
  87. code: 'InputFlux',
  88. unit: 'm³/min',
  89. },
  90. {
  91. title: '氮气纯度',
  92. code: 'NitrogenPurity',
  93. unit: '%',
  94. },
  95. {
  96. title: '膜前温度',
  97. code: 'PreMembraneTemperature',
  98. unit: '℃',
  99. },
  100. ];