상대 습도, 노점, 온도 계산기
This tool calculates 상대 습도 (RH), 노점 (Td), and 온도 (T) based on two inputs.
출력 값은 소수점 둘째 자리까지 반올림됩니다.
Equations
August-Roche-Magnus Estimation
RH(상대 습도 (RH)) = 100*(exp((17.625*TD)/(243.04+TD))/exp((17.625*T)/(243.04+T)))
TD(노점 (Td)) = 243.04*(ln(RH/100)+((17.625*T)/(243.04+T)))/(17.625-ln(RH/100)-((17.625*T)/(243.04+T)))
T(온도 (T)) = 243.04*(((17.625*TD)/(243.04+TD))-ln(RH/100))/(17.625+ln(RH/100)-((17.625*TD)/(243.04+TD)))