La sensación térmica o sensación térmica es la disminución percibida en la temperatura del aire que siente el cuerpo sobre la piel expuesta debido al flujo de aire. El efecto de la sensación térmica es aumentar la tasa de pérdida de calor y reducir cualquier objeto más caliente a la temperatura ambiente más rápidamente.
Esta es la fórmula estándar que fue adoptada en 2001 por Canadá, el Reino Unido y los EE. UU. para calcular y analizar el índice de sensación térmica:
Twc (WCI) = 13,12 + 0,6215T a – 11,37v +0,16 + 0,3965T av +0,16 donde Twc = Índice de sensación térmica (basado en la escala de temperatura Celsius) T a = Temperatura del aire (en grados Celsius) v = Viento Velocidad (en millas por hora)
Ejemplos:
Input: Air Temperature = 28 Wind Speed = 80 Output: 30 Calculation done using the above formula: WCI = 13.12 + 0.6215 * (28) - 11.37 * (80)**0.16 + 0.3965 * 28 * 80**0.16
Input: Air Temperature = 42 Wind Speed = 150 Output: 51 Calculation done using the above formula: WCI = 13.12 + 0.6215 * (42) - 11.37 * (150)**0.16 + 0.3965 * 42 * 150**0.16
Python3
# Python program to calculate WCI import math # function to calculate WCI def WC(temp, wi_sp): # Calculating Wind Chill Index (Twc) wci = 13.12+0.6215*temp- 11.37*math.pow(wi_sp, 0.16) + \ 0.3965*temp*math.pow(wi_sp, 0.16) return wci # Taking the Air Temperature (Ta) temp = 42 # Taking the Wind Speed (v) wi_sp = 150 print("The Wind Chill Index is", int(round(WC(temp, wi_sp))))
Producción:
The Wind Chill Index is 51
Este artículo es una contribución de Chinmoy Lenka . Si te gusta GeeksforGeeks y te gustaría contribuir, también puedes escribir un artículo usando write.geeksforgeeks.org o enviar tu artículo por correo a review-team@geeksforgeeks.org. Vea su artículo que aparece en la página principal de GeeksforGeeks y ayude a otros Geeks. Escriba comentarios si encuentra algo incorrecto o si desea compartir más información sobre el tema tratado anteriormente.
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA