终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
1018 B

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