hub/factories/weather_feeders/helpers/weather.py

19 lines
597 B
Python
Raw Normal View History

2020-10-28 13:42:58 -04:00
import math
import pandas as pd
import helpers.constants as cte
class Weather(object):
@staticmethod
def sky_temperature(ambient_temperature):
# Swinbank - Fuentes sky model approximation(1963) based on cloudiness statistics(32 %) in United States
# ambient temperatures( in °C)
# sky temperatures( in °C)
values = []
for temperature in ambient_temperature:
2020-10-28 13:42:58 -04:00
value = 0.037536 * math.pow((temperature + cte.celsius_to_kelvin), 1.5) \
+ 0.32 * (temperature + cte.celsius_to_kelvin) - cte.celsius_to_kelvin
values.append(value)
return values