airtconductivity {Thermimage} | R Documentation |
Thermal conductivity of air.
Description
Thermal conductivity of air. Units: W/m/K
Usage
airtconductivity(Ta = 20)
Arguments
Ta |
Air temperature in degrees Celsius. Default value is 20. |
Author(s)
Glenn J Tattersall
References
http://www.engineeringtoolbox.com/air-properties-d_156.html
See Also
Examples
## 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)
[Package Thermimage version 4.1.3 Index]