Question
Complete the matlab appTemp function: AT = T + 0.33 e 0.70 w 4.00, where e = h/100 6.105 exp(17.27 T (237.7 + T)) The
Complete the matlab appTemp function:
AT | = | T + 0.33 e 0.70 w 4.00, where |
e | = | h/100 6.105 exp(17.27 T (237.7 + T)) |
The quantities appearing in the formulae are:
T the ambient temperature, measured in Celsius degrees.
h the relative humidity, which is a percentage.
w the wind speed, measured in metres per second.
The task is to calculate the apparent temperature at a series of time steps using the formulae above.
Input variables:
T | The temperature (C), represented as a scalar. | |
H | The relative humidity (%), represented as a scalar. | |
W | The wind speed (km/h) represented as a scalar. Note: your function will need to convert wind speed from kilometers per hour to metres per second in order to apply the formulae above correctly. This can be done by dividing the speed in km/h by 3.6. |
Output variables:
AT | The apparent temperature. |
Function Template
function AT = appTemp( T, H, W )
%Calculate AT here
end
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started