iep-ui
Version:
An enterprise-class UI design language and Vue-based implementation
167 lines (165 loc) • 2.75 kB
JavaScript
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var pollutantSource = exports.pollutantSource = {
soot: {
unit: 'mg/m³',
name: '油烟浓度'
},
tsp: {
unit: 'ng/m³',
name: '颗粒物浓度'
},
nmhc: {
unit: 'mg/m³',
name: '非甲烷总烃'
},
c7h8: {
unit: 'mg/m³',
name: '甲苯'
},
c8h10: {
unit: 'mg/m³',
name: '乙苯'
},
xylenes: {
unit: 'mg/m³',
name: '二甲苯'
},
ch4: {
unit: 'mg/m³',
name: '甲烷'
},
th: {
unit: 'mg/m³',
name: '总烃'
},
c6h6: {
unit: 'mg/m³',
name: '苯'
},
hc: {
unit: 'mg/m³',
name: '碳氢化合物'
},
temp: {
unit: '℃',
name: '温度'
},
pressure: {
unit: 'pa',
name: '压力'
},
wideSpeed: {
unit: 'm/s',
name: '风速'
},
wideDir: {
unit: '°',
name: '风向'
},
power: {
unit: 'kw',
name: '功率'
},
electric: {
unit: 'A',
name: '电流'
},
gas_temperature: {
unit: '℃',
name: '油气温度'
},
tank_pressure: {
unit: 'pa',
name: '油罐压力'
},
postProcessStartValue: {
unit: 'pa',
name: '后处理装置开启压力'
},
pvNegativeProcessValue: {
unit: 'pa',
name: 'PV阀负向压力值'
},
gas_concentration: {
unit: 'ppm',
name: '卸油区油气浓度'
},
post_processing_unit: {
unit: 'g/m³',
name: '后处理装置排放浓度'
},
postProcessStopValue: {
unit: 'pa',
name: '后处理装置停止压力'
},
pvPositiveProcessValue: {
unit: 'pa',
name: 'pv阀正向压力值'
},
gas_liquid_ratio: {
unit: '',
name: '气液比'
},
gas_flow_rate: {
unit: 'm/s',
name: '油气流速'
},
gas_flow: {
unit: 'm³/s',
name: '油气流量'
},
fuel_flow_rate: {
unit: 'm/s',
name: '燃油流速'
},
recover_gas_concentration: {
unit: 'g/m3',
name: '回收油气浓度'
},
recover_gas_temperature: {
unit: '℃',
name: '回收油气温度'
},
resistance_pressure: {
unit: 'pa',
name: '液阻压力'
},
cod: {
unit: 'mg/m³',
name: '化学需氧量'
},
nh3n: {
unit: 'mg/m³',
name: '氨氮'
},
tp: {
unit: 'mg/m³',
name: '总磷'
},
tn: {
unit: 'mg/m³',
name: '总氮'
},
nox: {
unit: 'mg/m³',
name: '氮氧化物'
},
o2: {
unit: 'mg/m³',
name: '氧气含量'
},
dust: {
unit: 'mg/m³',
name: '烟尘'
},
so2: {
unit: 'mg/m³',
name: '二氧化硫'
}
};
var getPollutantSource = exports.getPollutantSource = function getPollutantSource(e) {
return pollutantSource[e] ? pollutantSource[e] : '-';
};