Skip to content

Commit

Permalink
Merge pull request #62 from tkeskita/master
Browse files Browse the repository at this point in the history
Fix unit of molar volume
  • Loading branch information
CalebBell committed Oct 30, 2020
2 parents 9f4175a + 8f6abfb commit 3cf94fb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions thermo/volume.py
Expand Up @@ -333,7 +333,7 @@ def Bhirud_normal(T, Tc, Pc, omega):
Returns
-------
Vm : float
Saturated liquid molar volume, [mol/m^3]
Saturated liquid molar volume, [m^3/mol]
Notes
-----
Expand Down Expand Up @@ -841,7 +841,7 @@ class VolumeLiquid(TPDependentProperty):
Berlin; New York:: Springer, 2010.
'''
name = 'Liquid molar volume'
units = 'mol/m^3'
units = 'm^3/mol'
interpolation_T = None
'''No interpolation transformation by default.'''
interpolation_P = None
Expand Down Expand Up @@ -1821,7 +1821,7 @@ class VolumeGas(TPDependentProperty):
2498-2508. doi:10.1021/ie4033999. http://www.coolprop.org/
'''
name = 'Gas molar volume'
units = 'mol/m^3'
units = 'm^3/mol'
interpolation_T = None
'''No interpolation transformation by default.'''
interpolation_P = None
Expand Down Expand Up @@ -2301,7 +2301,7 @@ class VolumeSolid(TDependentProperty):
Chemistry and Physics. [Boca Raton, FL]: CRC press, 2014.
'''
name = 'Solid molar volume'
units = 'mol/m^3'
units = 'm^3/mol'
interpolation_T = None
'''No interpolation transformation by default.'''
interpolation_property = None
Expand Down

0 comments on commit 3cf94fb

Please sign in to comment.