Learn R Programming

Thermimage (version 4.0.1)

airviscosity: Returns air viscosity for a given air temperature.

Description

Returns the air viscosity value for a given, supplied air temperature (Ta). Ta should be in units of oC.

Usage

airviscosity(Ta = 20)

Arguments

Ta

Air temperature in degrees Celsius. Default value is 20.

Value

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

References

http://www.engineeringtoolbox.com/air-properties-d_156.html

Examples

Run this code
# NOT RUN {
## 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)
# }

Run the code above in your browser using DataLab