Skip to content

Commit

Permalink
0.1.31 release
Browse files Browse the repository at this point in the history
  • Loading branch information
CalebBell committed Apr 25, 2017
1 parent fef92f3 commit 94a60a1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
name = 'thermo',
packages = ['thermo'],
license='MIT',
version = '0.1.30',
version = '0.1.31',
description = 'Chemical properties component of Chemical Engineering Design Library (ChEDL)',
author = 'Caleb Bell',
install_requires=['fluids', 'scipy', 'pandas', 'coolprop'],
Expand All @@ -64,7 +64,7 @@
platforms=["Windows", "Linux", "Mac OS", "Unix"],
author_email = 'Caleb.Andrew.Bell@gmail.com',
url = 'https://github.com/CalebBell/thermo',
download_url = 'https://github.com/CalebBell/thermo/tarball/0.1.30',
download_url = 'https://github.com/CalebBell/thermo/tarball/0.1.31',
keywords = ['chemical engineering', 'chemistry', 'mechanical engineering',
'thermodynamics', 'databases', 'cheminformatics', 'engineering','viscosity',
'density', 'heat capacity', 'thermal conductivity', 'surface tension',
Expand Down
2 changes: 1 addition & 1 deletion thermo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,4 +139,4 @@
__all__.extend(volume.__all__)


__version__ = '0.1.30'
__version__ = '0.1.31'
10 changes: 5 additions & 5 deletions thermo/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1831,7 +1831,7 @@ def plot_T_dependent_property(self, Tmin=None, Tmax=None, methods=[],
plt.plot(Ts, properties, label=method)
plt.ylabel(self.name + ', ' + self.units + '/K^%d derivative of order %d' % (order, order))
plt.title(self.name + ' derivative of order %d' % order + ' of ' + self.CASRN)
plt.legend()
plt.legend(loc='best')
plt.xlabel('Temperature, K')
plt.show()

Expand Down Expand Up @@ -2677,7 +2677,7 @@ def plot_isotherm(self, T, Pmin=None, Pmax=None, methods_P=[], pts=50,
else:
properties = [self.calculate_P(T, P, method_P) for P in Ps]
plt.plot(Ps, properties, label=method_P)
plt.legend()
plt.legend(loc='best')
plt.ylabel(self.name + ', ' + self.units)
plt.xlabel('Pressure, Pa')
plt.title(self.name + ' of ' + self.CASRN)
Expand Down Expand Up @@ -2750,7 +2750,7 @@ def plot_isobar(self, P, Tmin=None, Tmax=None, methods_P=[], pts=50,
else:
properties = [self.calculate_P(T, P, method_P) for T in Ts]
plt.plot(Ts, properties, label=method_P)
plt.legend()
plt.legend(loc='best')
plt.ylabel(self.name + ', ' + self.units)
plt.xlabel('Temperature, K')
plt.title(self.name + ' of ' + self.CASRN)
Expand Down Expand Up @@ -3438,7 +3438,7 @@ def plot_isotherm(self, T, zs, ws, Pmin=None, Pmax=None, methods=[], pts=50,
else:
properties = [self.calculate(T, P, zs, ws, method) for P in Ps]
plt.plot(Ps, properties, label=method)
plt.legend()
plt.legend(loc='best')
plt.ylabel(self.name + ', ' + self.units)
plt.xlabel('Pressure, Pa')
plt.title(self.name + ' of a mixture of ' + ', '.join(self.CASs)
Expand Down Expand Up @@ -3517,7 +3517,7 @@ def plot_isobar(self, P, zs, ws, Tmin=None, Tmax=None, methods=[], pts=50,
else:
properties = [self.calculate(T, P, zs, ws, method) for T in Ts]
plt.plot(Ts, properties, label=method)
plt.legend()
plt.legend(loc='best')
plt.ylabel(self.name + ', ' + self.units)
plt.xlabel('Temperature, K')
plt.title(self.name + ' of a mixture of ' + ', '.join(self.CASs)
Expand Down

0 comments on commit 94a60a1

Please sign in to comment.