add window parameters as Room attributes
This commit is contained in:
parent
35dff3d9ac
commit
032bc6d0ad
1 changed files with 6 additions and 0 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue