This commit is contained in:
sjl
2024-10-24 09:38:12 +08:00
parent 4ddc5d04bd
commit 3d6285498a
10 changed files with 287 additions and 159 deletions

View File

@@ -4,33 +4,152 @@ const errordata = ref<ErrorSystem.ErrorSystemList[]>([
{
'id': '1',
'name': 'Q/GDW 1650.2- 2016',
'publishTime':'',
'year':'2016',
'level':'A级',
'details': [
{ measured: '详细1-1', deviceLevel: '详细1-2', condition: '详细1-3', maxErrorValue: '详细1-4' },
{ measured: '详细1-5', deviceLevel: '详细1-6', condition: '详细1-7', maxErrorValue: '详细1-8' },
],
'state':'',
},
{
'id': '2',
'name': 'Q/GDW 10650.2 - 2021',
'publishTime':'',
'year':'2021',
'level':'A级',
'details': [
{ measured: '详细1-1', deviceLevel: '详细1-2', condition: '详细1-3', maxErrorValue: '详细1-4' },
{ measured: '详细1-5', deviceLevel: '详细1-6', condition: '详细1-7', maxErrorValue: '详细1-8' },
],
'state':'',
},
{
'id': '3',
'name': 'GBT 19862 - 2016',
'publishTime':'',
'year':'2016',
'level':'A级',
'details': [
{ measured: '详细1-1', deviceLevel: '详细1-2', condition: '详细1-3', maxErrorValue: '详细1-4' },
{ measured: '详细1-5', deviceLevel: '详细1-6', condition: '详细1-7', maxErrorValue: '详细1-8' },
],
'state':'',
},
])
export default errordata
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}