take out the 0.25 ACH inflitration ventilation for the IGH paper

This commit is contained in:
Andrejh 2021-08-06 15:46:57 +02:00
parent f18051d1c5
commit 916eeb1c59

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 0.25+(3600 / (3 * room.volume)) * self.discharge_coefficient * window_area * root
return (3600 / (3 * room.volume)) * self.discharge_coefficient * window_area * root
@dataclass(frozen=True)