View source: R/airtconductivity.R
airtconductivity | 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
airviscosity
## 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.