123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- export const preMonitorList = [
- {
- title: `排气压力`,
- code: `ExhaustPre`,
- unit: 'MPa',
- child: [],
- },
- {
- title: `排气温度`,
- code: `ExhaustTemp`,
- unit: '℃',
- child: [],
- },
- {
- title: `加载时间`,
- code: `LoadTime`,
- unit: 'h',
- child: [],
- },
- {
- title: `运行时间`,
- code: `RunTime`,
- unit: 'h',
- child: [],
- },
- {
- code: 'signal',
- child: [
- {
- title: `加载/卸载:`,
- code: `LoadorUnload`,
- isFault: -1,
- },
- {
- title: `控制方式:`,
- code: `CtrlMode`,
- isFault: -2,
- },
- ],
- },
- {
- code: 'signal',
- child: [
- {
- title: `运行信号:`,
- code: `Status`,
- isFault: false,
- },
- {
- title: `排气压力过高:`,
- code: `ExhaustPreHighFault`,
- isFault: true,
- },
- ],
- },
- ];
- export const preFanMonitorData = [
- {
- title: '系统电压',
- code: 'SysVoltage',
- unit: 'V',
- },
- {
- title: '漏电闭锁',
- code: 'LeakageLock',
- unit: 'signal',
- },
- {
- title: '油压低故障',
- code: 'OilPressureLowFault',
- unit: 'signal',
- },
- {
- title: '相序故障',
- code: 'PhaseSequenceFault',
- unit: 'signal',
- },
- ];
- export const nitrogenMonitorData = [
- {
- title: '总累计流量',
- code: 'FluxTotal',
- unit: 'm³',
- },
- {
- title: '瞬时流量',
- code: 'InputFlux',
- unit: 'm³/min',
- },
- {
- title: '氮气纯度',
- code: 'NitrogenPurity',
- unit: '%',
- },
- {
- title: '膜前温度',
- code: 'PreMembraneTemperature',
- unit: '℃',
- },
- ];
|