airtconductivity {Thermimage} | R Documentation |
Thermal conductivity of air. Units: W/m/K
airtconductivity(Ta = 20)
Ta |
Air temperature in degrees Celsius. Default value is 20. |
Glenn J Tattersall
http://www.engineeringtoolbox.com/air-properties-d_156.html
## The function is currently defined as
function (Ta = 20)
{
Intercept <- 0.024280952
Slope <- 7.07143e-05
k <- Intercept + Slope * Ta
k
}
# Example calculation:
Ta<-20
airtconductivity(Ta)