> Even heat-adapted people cannot carry out normal outdoor activities past a wet-bulb temperature of 32 °C (90 °F), equivalent to a heat index of 55 °C (131 °F). A reading of 35 °C (95 °F) – equivalent to a heat index of 71 °C (160 °F) – is considered the theoretical human survivability limit for up to six hours of exposure. --- https://en.wikipedia.org/wiki/Wet-bulb_temperature $code: def get_wet_bulb(Tdry, RH): return Tdry * math.atan(0.151977 * math.sqrt(RH + 8.313659)) + 0.00391838 * math.sqrt(RH**3) * math.atan(0.023101 * RH) - math.atan(RH - 1.676331) + math.atan(Tdry + RH) - 4.686035 Wet bulb for 110 °F and 60% relative humidity is $get_wet_bulb(110, 60). <div>\[ \scriptsize \begin{align*} T_\mathrm w = T\arctan(0.151977\sqrt{RH + 8.313659}) \\ + 0.00391838\sqrt{RH^3}\arctan(0.023101RH) \\ - \arctan(RH - 1.676331) \\ + \arctan(T + RH) \\ - 4.686035 \end{align*} \]</div> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.10/dist/katex.min.css" integrity="sha384-wcIxkf4k558AjM3Yz3BBFQUbk/zgIYC2R0QpeeYb+TwlBVMrlgLqwRjRtGZiK7ww" crossorigin="anonymous"> <script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.10/dist/katex.min.js" integrity="sha384-hIoBPJpTUs74ddyc4bFZSM1TVlQDA60VBbJS0oA934VSz82sBx1X7kSx2ATBDIyd" crossorigin="anonymous"></script> <script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.10/dist/contrib/auto-render.min.js" integrity="sha384-43gviWU0YVjaDtb/GhzOouOXtZMP/7XUzwPTstBeZFe/+rCMvRwr4yROQP43s0Xk" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script> |