Skip to content

Commit 0140e70

Browse files
committed
correct units of measure
1 parent 963c4f2 commit 0140e70

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
name='thermosteam',
1212
packages=['thermosteam'],
1313
license='MIT',
14-
version='0.52.13',
14+
version='0.52.14',
1515
description="BioSTEAM's Premier Thermodynamic Engine",
1616
long_description=open('README.rst', encoding='utf-8').read(),
1717
author='Yoel Cortes-Pena',

thermosteam/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
# update_module(chemicals, numba)
3232
# use_numba_chemicals()
3333
# del use_numba_chemicals
34-
__version__ = "0.52.13"
34+
__version__ = "0.52.14"
3535

3636
from . import thermo
3737
del thermo

thermosteam/equilibrium/plot_equilibrium.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def plot_vle_phase_envelope(
189189
for DP in DPs
190190
]
191191
ylabel = 'Temperature [K]'
192-
xlabel = 'Pressure [Pa]'
192+
xlabel = 'Pressure [atm]'
193193
variable = 'T'
194194
elif T_range:
195195
assert P_range is None, "must pass either T_range or P_range, but not both"

0 commit comments

Comments
 (0)