Files
pqs-9100_client/frontend/src/api/error/errorData.ts

155 lines
3.6 KiB
TypeScript
Raw Normal View History

2024-10-23 19:30:11 +08:00
import type {ErrorSystem} from "./interface"
const errordata = ref<ErrorSystem.ErrorSystemList[]>([
{
'id': '1',
'name': 'Q/GDW 1650.2- 2016',
2024-10-24 09:38:12 +08:00
'publishTime':'',
2024-10-23 19:30:11 +08:00
'year':'2016',
'level':'A级',
2024-10-24 09:38:12 +08:00
'state':'',
2024-10-23 19:30:11 +08:00
},
{
'id': '2',
'name': 'Q/GDW 10650.2 - 2021',
2024-10-24 09:38:12 +08:00
'publishTime':'',
2024-10-23 19:30:11 +08:00
'year':'2021',
'level':'A级',
2024-10-24 09:38:12 +08:00
'state':'',
2024-10-23 19:30:11 +08:00
},
{
'id': '3',
'name': 'GBT 19862 - 2016',
2024-10-24 09:38:12 +08:00
'publishTime':'',
2024-10-23 19:30:11 +08:00
'year':'2016',
'level':'A级',
2024-10-24 09:38:12 +08:00
'state':'',
2024-10-23 19:30:11 +08:00
},
])
2024-10-24 09:38:12 +08:00
const errordetail = ref<ErrorSystem.ErrorSystemDetail[]>([
{
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: 'Pst0.2~10',
maxErrorValue: '±5%'
},
{
measured: '谐波电压',
deviceLevel: 'A',
condition: 'Uh≥1%Un',
maxErrorValue: '±5%Uh'
},
{
measured: '谐波电压',
deviceLevel: 'A',
condition: 'Uh1%Un',
maxErrorValue: '±0.05%Un'
},
{
measured: '谐波电流',
deviceLevel: 'A',
condition: 'In≥3%In',
maxErrorValue: '±5%Ih'
},
{
measured: '谐波电流',
deviceLevel: 'A',
condition: 'In3%In',
maxErrorValue: '±0.15%In'
},
{
measured: '谐波功率',
deviceLevel: 'A',
condition: 'Ph≥150W',
maxErrorValue: '±1%Ph'
},
{
measured: '谐波功率',
deviceLevel: 'A',
condition: 'Ph150W',
maxErrorValue: '±1.5W'
},
{
measured: '间谐波电压',
deviceLevel: 'A',
condition: 'Uh≥1%Un',
maxErrorValue: '±5%Uh'
},
{
measured: '间谐波电压',
deviceLevel: 'A',
condition: 'Uh1%Un',
maxErrorValue: '±0.05%Un'
},
{
measured: '间谐波电流',
deviceLevel: 'A',
condition: 'In≥3%In',
maxErrorValue: '±5%Ih'
},
{
measured: '间谐波电流',
deviceLevel: 'A',
condition: 'In3%In',
maxErrorValue: '±0.15%In'
},
{
measured: '电流',
deviceLevel: 'A',
condition: 'I≥0.05In',
maxErrorValue: '±0.5%'
},
{
measured: '电流',
deviceLevel: 'A',
condition: '0.01In≤I0.05In',
maxErrorValue: '±1%'
},
{
measured: '暂态幅值',
deviceLevel: 'A',
condition: '',
maxErrorValue: '±0.2%Un'
},
{
measured: '暂态时间',
deviceLevel: 'A',
condition: '',
maxErrorValue: '±1周波'
},
])
export default {errordata,errordetail}