Learn R Programming

Thermimage (version 4.0.1)

airtconductivity: 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.

References

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

See Also

airviscosity

Examples

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

Run the code above in your browser using DataLab