Adding 0.25 ACH to air_changes for all WindowOpening

This commit is contained in:
Nicolas Mounet 2021-06-03 23:27:46 +02:00
parent db457b760f
commit f8c1658ea5

View file

@ -250,7 +250,7 @@ class WindowOpening(Ventilation):
temp_gradient = (inside_temp - outside_temp) / outside_temp
root = np.sqrt(9.81 * self.window_height * temp_gradient)
window_area = self.window_height * self.opening_length * self.number_of_windows
return (3600 / (3 * room.volume)) * self.discharge_coefficient * window_area * root
return 0.25+(3600 / (3 * room.volume)) * self.discharge_coefficient * window_area * root
@dataclass(frozen=True)