Correct rhino read
This commit is contained in:
parent
f53beb4a0a
commit
c28e1ba176
|
@ -172,7 +172,7 @@ class ThermalBoundary:
|
||||||
def thermal_openings(self) -> Union[None, List[ThermalOpening]]:
|
def thermal_openings(self) -> Union[None, List[ThermalOpening]]:
|
||||||
"""
|
"""
|
||||||
Get thermal boundary thermal openings
|
Get thermal boundary thermal openings
|
||||||
:return: [ThermalOpening]
|
:return: None or [ThermalOpening]
|
||||||
"""
|
"""
|
||||||
if self._thermal_openings is None:
|
if self._thermal_openings is None:
|
||||||
if self.window_ratio is not None:
|
if self.window_ratio is not None:
|
||||||
|
|
|
@ -70,7 +70,7 @@ class ThermalZone:
|
||||||
return self._footprint_area
|
return self._footprint_area
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def thermal_boundaries(self) -> List[ThermalBoundary]:
|
def thermal_boundaries(self) -> [ThermalBoundary]:
|
||||||
"""
|
"""
|
||||||
Get thermal boundaries bounding with the thermal zone
|
Get thermal boundaries bounding with the thermal zone
|
||||||
:return: [ThermalBoundary]
|
:return: [ThermalBoundary]
|
||||||
|
@ -564,7 +564,7 @@ class ThermalZone:
|
||||||
_internal_gain.convective_fraction = internal_gain_type.convective_fraction
|
_internal_gain.convective_fraction = internal_gain_type.convective_fraction
|
||||||
_internal_gain.schedules = internal_gain_type.schedules
|
_internal_gain.schedules = internal_gain_type.schedules
|
||||||
|
|
||||||
def get_internal_gains(self) -> [InternalGain]:
|
def get_internal_gains(self) -> List[InternalGain]:
|
||||||
"""
|
"""
|
||||||
Calculates and returns the list of all internal gains defined
|
Calculates and returns the list of all internal gains defined
|
||||||
:return: [InternalGain]
|
:return: [InternalGain]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user