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
I'm looking at the pythermalcomfort SET model and have a question. When I used input parameters of Clo=0.6, Met=1, RH=50%, Vel=0.1, and Tair=MRT, I thought I should get the result of SET=Tair. This is true when Tair=30, but above 30, SET is a bit higher and as Tair drops, SET diverges below Tair.
Some preliminary results
I run the following code and this is what I get. I am not sure what it causing the anomaly around 37.5C.
for t in range(22, t_max, 1):
# calculate the SET
two_nodes(tdb=t, tr=t, v=0.1, rh=50, met=1, clo=0.6)
Email from Charlie
I'm looking at the pythermalcomfort SET model and have a question. When I used input parameters of Clo=0.6, Met=1, RH=50%, Vel=0.1, and Tair=MRT, I thought I should get the result of SET=Tair. This is true when Tair=30, but above 30, SET is a bit higher and as Tair drops, SET diverges below Tair.
Some preliminary results
I run the following code and this is what I get. I am not sure what it causing the anomaly around 37.5C.
for t in range(22, t_max, 1):
# calculate the SET
two_nodes(tdb=t, tr=t, v=0.1, rh=50, met=1, clo=0.6)
Full Python code
The text was updated successfully, but these errors were encountered: