On a cold winter morning the thermometer might read −8 °C, but if a 30 km/h wind is blowing it can feel closer to −16 °C. That gap between the measured temperature and what your body actually experiences is the wind chill — and knowing it matters for dressing correctly, managing outdoor work, and protecting children and the elderly from frostbite.
This calculator implements the official NWS / Environment Canada 2001 formula, works in both Celsius/Fahrenheit and km/h/mph, and pairs every result with a colour-coded frostbite risk rating backed by the same thresholds used on Canadian weather forecasts.
How it works
Wind chill is calculated from two measurements:
- T — the air temperature in °C (dry-bulb, standard meteorological thermometer)
- V — the wind speed in km/h at the standard 10-metre reference height
The NWS formula is:
WC = 13.12 + 0.6215 · T − 11.37 · V^0.16 + 0.3965 · T · V^0.16
The exponent 0.16 captures the non-linear relationship between wind speed and heat transfer: doubling the wind does not double the cooling effect, but it still meaningfully increases it. The formula was calibrated using volunteer subjects in a wind tunnel and validated with skin-temperature sensors in real outdoor conditions at Windsor, Ontario.
Valid range: T ≤ 10 °C and V ≥ 3 km/h. Below 3 km/h the air movement is so slight that wind chill equals the actual temperature. Above 10 °C wind speeds cool the body but the mechanism differs (evaporative cooling dominates), so a separate formula applies there.
The frostbite risk thresholds — Low, Moderate, High, Very High, Extreme — map directly onto the wind chill temperature and indicate how quickly exposed facial skin can freeze. They assume someone is dressed for the temperature but not wearing a full face mask.
Worked example
Suppose it is −12 °C with a 40 km/h wind:
- V^0.16 = 40^0.16 ≈ 1.9953
- WC = 13.12 + 0.6215 × (−12) − 11.37 × 1.9953 + 0.3965 × (−12) × 1.9953
- WC = 13.12 − 7.458 − 22.687 − 9.495
- WC ≈ −26.5 °C
That is a High frostbite risk: exposed skin such as cheeks, nose, or ears can freeze in as little as 5–10 minutes without protection. A face covering and warm gloves are essential.
| Air temp | Wind | Wind chill | Risk |
|---|---|---|---|
| −5 °C | 20 km/h | −11 °C | Moderate |
| −10 °C | 30 km/h | −20 °C | High |
| −20 °C | 50 km/h | −36 °C | Very High |
| −35 °C | 60 km/h | −56 °C | Extreme |
Every calculation happens instantly in your browser — no figures are sent to any server.