Skip to content

Commit

Permalink
0.1.63 release
Browse files Browse the repository at this point in the history
  • Loading branch information
CalebBell committed Jul 15, 2017
1 parent 0815a72 commit 7b444d6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion fluids/__init__.py
Expand Up @@ -93,4 +93,4 @@
__all__.extend(separator.__all__)


__version__ = '0.1.62'
__version__ = '0.1.63'
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -57,8 +57,8 @@
name = 'fluids',
packages = ['fluids'],
license='MIT',
version = '0.1.62',
download_url = 'https://github.com/CalebBell/fluids/tarball/0.1.62',
version = '0.1.63',
download_url = 'https://github.com/CalebBell/fluids/tarball/0.1.63',
description = 'Fluid dynamics component of Chemical Engineering Design Library (ChEDL)',
long_description=open('README.rst').read(),
extras_require = {
Expand Down
4 changes: 2 additions & 2 deletions tests/test_two_phase_voidage.py
Expand Up @@ -42,8 +42,8 @@ def Smith2(x, rhol, rhog):
third = ((rhol/rhog + K*(1/x-1))/(1 + K*(1/x -1)))**0.5
return (first + second*third)**-1

alpha_1 = [Smith(i, 800, 2.5) for i in np.linspace(0,1)]
alpha_2 = [Smith2(i, 800, 2.5) for i in np.linspace(0,1)]
alpha_1 = [Smith(i, 800, 2.5) for i in np.linspace(1E-9,.99)]
alpha_2 = [Smith2(i, 800, 2.5) for i in np.linspace(1E-9, .99)]
assert_allclose(alpha_1, alpha_2)


Expand Down

0 comments on commit 7b444d6

Please sign in to comment.