Browse Source

modify temperature set lower limmit for AHU, 16 -> 18

highing666 3 years ago
parent
commit
94bb37b7ec
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/controllers/equipment/ahu/supply_air_temperature_set.py

+ 1 - 1
app/controllers/equipment/ahu/supply_air_temperature_set.py

@@ -93,7 +93,7 @@ class ACATAHSupplyAirTemperatureController:
         if self.season == Season.heating:
             temperature = max(20.0, min(30.0, temperature))
         else:
-            temperature = max(16.0, min(30.0, temperature))
+            temperature = max(18.0, min(30.0, temperature))
 
         return temperature