You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# If it's humid, both hot and cold feel more extreme
discomfort = N - setpoint_T
N = (
setpoint_T
+ discomfort
+ (
discomfort
# Convert humidity from g/kg to kg/kg
* ((weather["humidity"] / 1000) - setpoint_H)
* humidity_discomfort
)
)
In the above piece of code, N - setpoint_T is multiplied instead of weather["temperature"], but I believe in the equation on the article it was written temperature. Could you please clarify? Here N is weather["temperature"] plus parameters which take solar gains and wind chills into consideration.
Also setpoint_H 's unit is g/kg, then why only convert weather["Humidity"] to kg/kg? I believe it is a mistake.
Also, setpoint_H = (1.1 + 0.06 * T).rpow(np.e); but in the article it is written as H = 1.1+0.6T; 0.6T instead of 0.06T. Which one is correct?
The text was updated successfully, but these errors were encountered:
In the above piece of code, N - setpoint_T is multiplied instead of weather["temperature"], but I believe in the equation on the article it was written temperature. Could you please clarify? Here N is weather["temperature"] plus parameters which take solar gains and wind chills into consideration.
Also setpoint_H 's unit is g/kg, then why only convert weather["Humidity"] to kg/kg? I believe it is a mistake.
Also, setpoint_H = (1.1 + 0.06 * T).rpow(np.e); but in the article it is written as H = 1.1+0.6T; 0.6T instead of 0.06T. Which one is correct?
The text was updated successfully, but these errors were encountered: