Adding docstring for SlidingWindow in models.py
This commit is contained in:
parent
5c51621034
commit
5a58517367
1 changed files with 8 additions and 0 deletions
|
|
@ -238,8 +238,16 @@ class WindowOpening(Ventilation):
|
|||
|
||||
@dataclass(frozen=True)
|
||||
class SlidingWindow(WindowOpening):
|
||||
"""
|
||||
Sliding window, or side-hung window (with the hinge perpendicular to
|
||||
the horizontal plane).
|
||||
"""
|
||||
@property
|
||||
def discharge_coefficient(self) -> float:
|
||||
"""
|
||||
Average measured value of discharge coefficient for sliding or
|
||||
side-hung windows.
|
||||
"""
|
||||
return 0.6
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue