mol2l {marelac} | R Documentation |
Converts from liter to moles for a gas
mol2l(x=1, T=25, P=1, a=0, b=0)
x |
mol of the gas |
T |
temperature, dg celsius |
P |
pressure, atmosphere |
a |
Species-specific coefficient, dm^6*bar/mol^2 |
b |
Species-specific coefficient, dm^3/mol |
volume of the gas, liter
the coefficients a and b are species-specific; values of 0 in general give good estimates
Some values of a and b:
He | 0.034598 | 0.023733 | |
H2 | 0.24646 | 0.026665 | |
N2 | 1.3661 | 0.038577 | |
oxygen | 1.3820 | 0.03186 |
Karline Soetaert <k.soetaert@nioo.knaw.nl>
l2mol
the inverse function
#22.4 Liters of Oxygen = 1.00 moles of Oxygen mol2l(a=1.382,b=0.03186,T=0) # the same but with standard coefficients mol2l(T=0)