convert_conductance | R Documentation |
Convert conductance units
convert_conductance(.g, Temp = NULL, P = NULL)
.g |
Conductance in class units. Units must convertible to one of "m/s", "umol/m^2/s/Pa", or "mol/m^2/s" |
Temp |
A temperature value of class |
P |
A pressure value of class |
A list of three values of clas units
with units "m/s", "umol/m^2/s/Pa", and "mol/m^2/s".
g_sw <- set_units(10, "m/s") convert_conductance(g_sw, Temp = set_units(298.15, "K"), P = set_units(101.3246, "kPa")) g_sw <- set_units(4, "umol/m^2/s/Pa") convert_conductance(g_sw, Temp = set_units(298.15, "K"), P = set_units(101.3246, "kPa")) g_sw <- set_units(0.4, "mol/m^2/s") convert_conductance(g_sw, Temp = set_units(298.15, "K"), P = set_units(101.3246, "kPa"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.