Details and Options
Wind chill is the temperature perceived by humans, taking into account air temperature and wind speed. The function works with temperature values between -70 °C and 10 °C and values between 4.282 km/h and 400 km/h for wind speed.
The
loc argument is a location in the form of an
Entity, a
GeoPosition or
Here. This information comes from the nearest weather station to that location and the value may vary over time. A list of air temperature and wind speed information can be used in place of a location.
The form argument can be a temperature, a plot or an association giving both temperature and plot:
"Temperature" | the perceived temperature due to wind chill |
"Plot" | a plot of the perceived temperature versus wind speed at the given air temperature |
"PropertyAssociation" | all results as an Association |
The default value of the form argument when not given is "Temperature".
If the temperature unit is not specified for the t argument, the input is considered degrees Celsius. Examples of degree units for temperature accepted by the function are:
Quantity[-20,"DegreesCelsius"] | degrees Celsius |
Quantity[-90,"DegreesFahrenheit"] | degrees Fahrenheit |
Quantity[420,"DegreesRankine"] | degrees Rankine |
Quantity[215,"Kelvins"] | Kelvins |
-20 | degrees Celsius |
If the wind speed unit is not specified for the ws argument, it is considered kilometers per hour. Examples of input allowed for wind speed and how it is interpreted are:
Quantity[30, "Kilometers"/"Hours"] | kilometers per hour |
Quantity[20, “Miles"/"Hours”] | miles per hour |
15 | kilometers per hour |
ResourceFunction["WindChill"] accepts the option "ResultUnit" to specify the unit of the result. The accepted values are "DegreesFahrenheit", "DegreesCelsius", "DegreesRankine" and "Kelvins". By default, the unit is inherited from the inputs. If no unit is provided, "DegreesCelsius" is used.