Spaces:
Sleeping
Sleeping
Update utils/heat_transfer.py
Browse files- utils/heat_transfer.py +1 -2
utils/heat_transfer.py
CHANGED
@@ -299,8 +299,7 @@ class SolarCalculations:
|
|
299 |
|
300 |
def ashrae_clear_sky_radiation(self, day_of_year: int, hour: float, latitude_deg: float,
|
301 |
longitude_deg: float, standard_meridian_deg: float,
|
302 |
-
altitude_m: float = 0)
|
303 |
-
-> Tuple[float, float, float]:
|
304 |
"""
|
305 |
Estimate DNI and DHI using ASHRAE Clear Sky model.
|
306 |
Reference: ASHRAE HOF 2017, Ch. 14, Eq. 14.18-14.21 (Simplified version)
|
|
|
299 |
|
300 |
def ashrae_clear_sky_radiation(self, day_of_year: int, hour: float, latitude_deg: float,
|
301 |
longitude_deg: float, standard_meridian_deg: float,
|
302 |
+
altitude_m: float = 0) -> Tuple[float, float, float]:
|
|
|
303 |
"""
|
304 |
Estimate DNI and DHI using ASHRAE Clear Sky model.
|
305 |
Reference: ASHRAE HOF 2017, Ch. 14, Eq. 14.18-14.21 (Simplified version)
|