|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.MorkCL.Model.Control
- {
- public class MotorAlarm
- {
- public static Dictionary<int,string> AlarmDic { get; } =new Dictionary<int, string>() {
- {0,"无故障" },{1,"过电流" },{2,"过电压" },{3,"IGBT过热" },{4,"备用" },{5,"变频器过负载" },{6,"电机过负载" },
- {7,"过转矩" },{8,"外部异常" },{9,"加速中过电流" },{10,"减速中过电流" },{11,"恒速中过电流" },{12,"备用" },{13,"电压不足" },
- {14,"输入电压缺相" },{15,"备用" },{16,"不适用自动加减速设定" },{17,"软件参数密码保护" },{18,"CPU写入异常" },{19,"CPU读取异常" },{20,"端子保护线路异常" },
- {21,"0V保护线路异常" },{22,"备用" },{23,"备用" },{24,"U相硬件异常" },{25,"V相硬件异常" },{26,"W相硬件异常" },{27,"DC,bus 硬件异常" },
- };
- }
-
- }
|