airviscosity | R Documentation |
Returns the air viscosity value for a given, supplied air temperature (Ta). Ta should be in units of oC.
airviscosity(Ta = 20)
Ta |
Air temperature in degrees Celsius. Default value is 20. |
Kinematic viscosity of air, as a function of temperature Units: m2/s Regression for 0 to 100oC range: Intercept<-13.17380952 Slope<-0.097457143 k<-(Intercept+Slope*Ta)*1e-6 # multiply by 1e-6 to get into m2/s units
Glenn J Tattersall
http://www.engineeringtoolbox.com/air-properties-d_156.html
## The function is currently defined as
function (Ta = 20)
{
Intercept <- 13.17380952
Slope <- 0.097457143
k <- (Intercept + Slope * Ta) * 1e-06
k
}
# Example calculation
Ta<-20
airviscosity(Ta)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.