add window parameters as Room attributes

This commit is contained in:
markus 2020-10-20 14:43:45 +02:00
parent 35dff3d9ac
commit 032bc6d0ad

View file

@ -10,6 +10,12 @@ from dataclasses import dataclass
class Room:
volume: int
# The height of the window in the room (assumes one window)
window_height: float
# The length of the opening-gap when the window is open
opening_length: float
@dataclass(frozen=True)
class Ventilation: