import type {ErrorSystem} from "./interface" const errordata = ref([ { 'id': '1', 'name': 'Q/GDW 1650.2- 2016', 'publishTime':'', 'year':'2016', 'level':'A级', 'state':'', }, { 'id': '2', 'name': 'Q/GDW 10650.2 - 2021', 'publishTime':'', 'year':'2021', 'level':'A级', 'state':'', }, { 'id': '3', 'name': 'GBT 19862 - 2016', 'publishTime':'', 'year':'2016', 'level':'A级', 'state':'', }, ]) const errordetail = ref([ { measured: '电压', deviceLevel: 'A', condition: '10%~150%标称电压', maxErrorValue: '±0.1%Un' }, { measured: '频率', deviceLevel: 'A', condition: '42.5~57.5 Hz', maxErrorValue: '±0.01Hz' }, { measured: '电压三相不平衡度', deviceLevel: 'A', condition: '0.5%~5%', maxErrorValue: '±0.15%' }, { measured: '电压三相不平衡度', deviceLevel: 'A', condition: '5%(不包含)~ 40%', maxErrorValue: '±0.3%' }, { measured: '电流三相不平衡度', deviceLevel: 'A', condition: '', maxErrorValue: '±1%' }, { measured: '短时闪变', deviceLevel: 'A', condition: 'Pst:0.2~10', maxErrorValue: '±5%' }, { measured: '谐波电压', deviceLevel: 'A', condition: 'Uh≥1%Un', maxErrorValue: '±5%Uh' }, { measured: '谐波电压', deviceLevel: 'A', condition: 'Uh<1%Un', maxErrorValue: '±0.05%Un' }, { measured: '谐波电流', deviceLevel: 'A', condition: 'In≥3%In', maxErrorValue: '±5%Ih' }, { measured: '谐波电流', deviceLevel: 'A', condition: 'In<3%In', maxErrorValue: '±0.15%In' }, { measured: '谐波功率', deviceLevel: 'A', condition: 'Ph≥150W', maxErrorValue: '±1%Ph' }, { measured: '谐波功率', deviceLevel: 'A', condition: 'Ph<150W', maxErrorValue: '±1.5W' }, { measured: '间谐波电压', deviceLevel: 'A', condition: 'Uh≥1%Un', maxErrorValue: '±5%Uh' }, { measured: '间谐波电压', deviceLevel: 'A', condition: 'Uh<1%Un', maxErrorValue: '±0.05%Un' }, { measured: '间谐波电流', deviceLevel: 'A', condition: 'In≥3%In', maxErrorValue: '±5%Ih' }, { measured: '间谐波电流', deviceLevel: 'A', condition: 'In<3%In', maxErrorValue: '±0.15%In' }, { measured: '电流', deviceLevel: 'A', condition: 'I≥0.05In', maxErrorValue: '±0.5%' }, { measured: '电流', deviceLevel: 'A', condition: '0.01In≤I<0.05In', maxErrorValue: '±1%' }, { measured: '暂态幅值', deviceLevel: 'A', condition: '', maxErrorValue: '±0.2%Un' }, { measured: '暂态时间', deviceLevel: 'A', condition: '', maxErrorValue: '±1周波' }, ]) export default {errordata,errordetail}