浏览代码

modify params

chenhaiyang 5 年之前
父节点
当前提交
714e6f72e5
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      alarm.py

+ 1 - 1
alarm.py

@@ -38,7 +38,7 @@ class FanCoilUnitAlarm(Alarm):
 
                 air_temp_diff = self.get('return_air_temp') - abs(self.get('supply_air_temp'))
                 water_temp_diff = self.get('water_out_temp') - abs(self.get('water_in_temp'))
-                if air_temp_diff > 15 and water_temp_diff < 1.5:
+                if air_temp_diff > 13 and water_temp_diff < 1.5:
                     self.set_alarm(1)
 
         return