Description Usage Arguments Author(s) References Examples
Density of air if temperature (degrees Celsius) provided. Units: kg/m3
| 1 | 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
| 1 2 3 4 5 6 7 8 | ## 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.