airtconductivity: Thermal conductivity of air.

Description Usage Arguments Author(s) References See Also Examples

View source: R/airtconductivity.R

Description

Thermal conductivity of air. Units: W/m/K

Usage

1

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

airviscosity

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
## 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)

Thermimage documentation built on Sept. 27, 2021, 5:11 p.m.