123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- export const nitrogenMonitorData = [
- {
- title: '管道温度',
- code: 'pipe_temperature',
- unit: '℃',
- },
- {
- title: '管道压力',
- code: 'pipe_pressure',
- unit: 'MPa',
- },
- {
- title: '氮气流量',
- code: 'nitrogen_flow_rate',
- unit: 'm³',
- },
- {
- title: '氮气浓度',
- code: 'nitrogen_concentration',
- unit: '%',
- },
- {
- title: '电动排氮阀开度',
- code: 'nitrogen_discharge_opening',
- unit: '--',
- },
- ];
- export const preMonitorList = [
- {
- title: `主机温度`,
- code: `host_temperature`,
- unit: '℃',
- child: [],
- },
- {
- title: `排气压力`,
- code: `exhaust_pressure`,
- unit: 'MPa',
- child: [],
- },
- {
- title: `管道温度`,
- code: `pipe_temperature`,
- unit: '℃',
- child: [],
- },
- {
- title: `管道压力`,
- code: `pipe_pressure`,
- unit: 'MPa',
- child: [],
- },
- {
- title: `电机定子温度`,
- code: `stator_temperature`,
- unit: '℃',
- child: [],
- },
- {
- title: `电机前端轴承温度`,
- code: `front_axle_temperature`,
- unit: '℃',
- child: [],
- },
- {
- title: `电机后端轴承温度`,
- code: `rear_axle_temperature`,
- unit: '℃',
- child: [],
- },
- ];
- export const preFanMonitorData = [
- {
- title: '运行状态',
- code: 'operation_shutdown',
- unit: '',
- },
- {
- title: '运行时间',
- code: 'operation_hours',
- unit: 'h',
- },
- {
- title: '油压未建立故障',
- code: 'oil_pressure_not_established',
- unit: 'signal',
- },
- {
- title: '排气压力超限故障',
- code: 'exhaust_pressure_exceeding_limit',
- unit: 'signal',
- },
- {
- title: '相序故障',
- code: 'phase-sequence_protection',
- unit: 'signal',
- },
- {
- title: '风机1过载故障',
- code: 'fan1_overload',
- unit: 'signal',
- },
- {
- title: '风机2过载故障',
- code: 'fan2_overload',
- unit: 'signal',
- },
- {
- title: '风机3过载故障',
- code: 'fan3_overload',
- unit: 'signal',
- },
- {
- title: '风机4过载故障',
- code: 'fan4_overload',
- unit: 'signal',
- },
- {
- title: '高压柜故障',
- code: 'hvc_malfunction',
- unit: 'signal',
- },
- ];
|