Adding 0.25 ACH to air_changes for all WindowOpening
This commit is contained in:
parent
db457b760f
commit
f8c1658ea5
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue