airdensity | R Documentation |
Density of air if temperature (degrees Celsius) provided. Units: kg/m3
airdensity(Ta = 20)
Ta |
Air temperature in degrees Celsius. Default value is 20. |
Glenn J Tattersall
http://www.engineeringtoolbox.com/air-properties-d_156.html
## The function is currently defined as
function (Ta = 20)
{
Base <- 314.156
Exponent <- (-0.981)
p <- Base * (Ta + 273.15)^Exponent
p
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.