device-params.ts 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /**
  2. * 控制柜设备参数
  3. */
  4. export const enum DevParamCtrlCabinet {
  5. 冷冻总管出水温度 = 'chilledWaterMainTempOut',
  6. 冷冻总管回水温度 = 'chilledWaterMainTempIn',
  7. 冷冻总管出水压力 = 'chilledWaterMainPreOut',
  8. 冷冻总管回水压力 = 'chilledWaterMainPreIn',
  9. 冷却总管出水温度 = 'coolingWaterMainTempOut',
  10. 冷却总管回水温度 = 'coolingWaterMainTempIn',
  11. 系统控制模式设定 = 'systemControlModeSet',
  12. }
  13. /**
  14. * 冷却塔设备参数
  15. */
  16. export const enum DevParamCoolingTower {
  17. 本地远程状态 = 'localRemoteStatus',
  18. 有功功率 = 'outputActivePower',
  19. 频率反馈 = 'frequencyFb',
  20. 运行时间 = 'runHours',
  21. }
  22. /**
  23. * 冷却泵设备参数
  24. */
  25. export const enum DevParamCoolingPump {
  26. 本地远程状态 = 'localRemoteStatus',
  27. 有功功率 = 'outputActivePower',
  28. 频率反馈 = 'frequencyFb',
  29. 运行时间 = 'runHours',
  30. }
  31. /**
  32. * 冷水主机设备参数
  33. */
  34. export const enum DevParamChillerUnit {
  35. COP = 'COP',
  36. 制冷量 = 'chillerUnitCoolingCapacity',
  37. 有功功率 = 'outputActivePower',
  38. 负载率 = 'loadRatio',
  39. 负载率限制设定值 = 'loadRatioLimitSet',
  40. 冷冻水出水温度设定值 = 'evapWaterTempOutSet',
  41. 冷冻水出水温度设定值反馈 = 'evapWaterTempOutSetFb',
  42. 今日耗电量 = 'energyToday',
  43. 本月耗电量 = 'energyMonth',
  44. 冷冻水回水温度 = 'evapWaterTempIn',
  45. 冷冻水出水温度 = 'evapWaterTempOut',
  46. 蒸发压力 = 'evapPre',
  47. 蒸发温度 = 'evapTemp',
  48. 冷却水回水温度 = 'condWaterTempIn',
  49. 冷却水出水温度 = 'condWaterTempOut',
  50. 冷凝压力 = 'condPre',
  51. 冷凝温度 = 'condTemp',
  52. }