summaryrefslogtreecommitdiff
path: root/progs/a37.py
blob: 384f34a6d9244880b9e7253a001d09b83159e05d (plain)
1
2
3
4
import math
def wind_chill(v,t):
 windchill = 13.12 + 0.6215*t -  11.37*math.pow(v, 0.16) + 0.3965*t*math.pow(v, 0.16)
 return int(round(windchill, 0))