min air_exchange 0.25 ACH

This commit is contained in:
Andrejh 2021-03-15 23:02:15 +01:00
parent ac11392bd3
commit e5cbb781ee

View file

@ -236,7 +236,7 @@ class WindowOpening(Ventilation):
def air_exchange(self, room: Room, time: float) -> float:
# If the window is shut, no air is being exchanged.
if not self.active.triggered(time):
return 0.
return 0.25
# Reminder, no dependence on time in the resulting calculation.
inside_temp = self.inside_temp.value(time)