Steam tables from Chemical, Biochemical, and Engineering Thermodynamics (5th edition) by Stan Sandler
Project description
Sandlersteam
Digitized steam tables from Sandler's 5th ed.
Sandlersteam implements a python interface to the steam tables found in Appendix III of Chemical, Biochemical, and Engineering Thermodynamics (5th edition) by Stan Sandler (Wiley, USA). It should be used for educational purposes only.
The interface operates similarly to the IAPWS steam tables (which you should use instead of these).
Installation
Sandlersteam is available via pip:
pip install sandlersteam
Usage example
Below we create a State object to define a thermodynamic state for steam at 100 deg. C and 0.1 MPa:
>>> from sandlersteam.state import State
>>> state1 = State(T=100.0,P=0.1)
>>> state1.h # enthalpy in kJ/kg
2676.2
>>> state1.u # internal energy in kJ/kg
2506.7
>>> state1.v # volume in m3/kg
1.6958
>>> state1.s # entropy in kJ/kg-K
7.3614
Specifying a state requires values for two independent state variables. The state variables recognized by sandlersteam are:
Ttemperature in CPpressure in MPauspecific internal energy in kJ/kgvspecific volume in m3/kghspecific enthalpy in kJ/kgsspecific entropy in kJ/kgxquality; mass fraction of vapor in a saturated vapor/liquid system (between 0 and 1)
Initializing a State instance with any two of these values set by keyword parameters results in the other
properties receiving values by (bi)linear interpolation.
When specifying quality, a State objects acquires Liquid and Vapor attributes that each hold intensive, saturated single-phase property values. The property value attributes owned directly by the State object reflect the quality-weighted sum of the respective single-phase values:
>>> s = State(T=100,x=0.5)
>>> s.P
0.10135
>>> s.v
0.836972
>>> s.Vapor.v
1.6729
>>> s.Liquid.v
0.001044
>>> 0.5*(s.Vapor.v+s.Liquid.v)
0.836972
One can also import the SteamTables dictionary from the state state module and then generate LaTeX-compatible versions of either blocks in the superheated/subcooled steam tables or entire saturated steam stables, listed by temperature or pressure. For example:
>>> from sandlersteam.state import SteamTables as st
>>> print(st['suph'].to_latex(P=1.0)) # generates latex for the 1 MPa block of the superheated steam table
\begin{minipage}{0.6\textwidth}
\footnotesize\vspace{5mm}
\begin{center}
$P$ = 1.0 MPa\\*[1ex]
\begin{tabular}{>{\raggedleft}p{8mm}@{}p{5mm}>{\raggedleft}p{4mm}@{}p{10mm}>{\raggedleft}p{10mm}@{}p{3mm}>{\raggedleft}p{10mm}@{}p{3mm}>{\raggedleft\arraybackslash}p{3mm}@{}p{8mm}}
\toprule
\multicolumn{2}{c}{$T$~($^\circ$C)} & \multicolumn{2}{c}{$\hat{V}$} & \multicolumn{2}{c}{$\hat{U}$} & \multicolumn{2}{c}{$\hat{H}$} & \multicolumn{2}{c}{$\hat{S}$}\\
\toprule
\midrule
179 & .91 & 0 & .19444 & 2583 & .6 & 2778 & .1 & 6 & .5865 \\
200 & & 0 & .2060 & 2621 & .9 & 2827 & .9 & 6 & .6940 \\
250 & & 0 & .2327 & 2709 & .9 & 2942 & .6 & 6 & .9247 \\
300 & & 0 & .2579 & 2793 & .2 & 3051 & .2 & 7 & .1229 \\
350 & & 0 & .2825 & 2875 & .2 & 3157 & .7 & 7 & .3011 \\
400 & & 0 & .3066 & 2957 & .3 & 3263 & .9 & 7 & .4651 \\
500 & & 0 & .3541 & 3124 & .4 & 3478 & .5 & 7 & .7622 \\
600 & & 0 & .4011 & 3296 & .8 & 3697 & .9 & 8 & .0290 \\
700 & & 0 & .4478 & 3475 & .3 & 3923 & .1 & 8 & .2731 \\
800 & & 0 & .4943 & 3660 & .4 & 4154 & .7 & 8 & .4996 \\
900 & & 0 & .5407 & 3852 & .2 & 4392 & .9 & 8 & .7118 \\
1000 & & 0 & .5871 & 4050 & .5 & 4637 & .6 & 8 & .9119 \\
1100 & & 0 & .6335 & 4255 & .1 & 4888 & .6 & 9 & .1017 \\
1200 & & 0 & .6798 & 4465 & .6 & 5145 & .4 & 9 & .2822 \\
1300 & & 0 & .7261 & 4681 & .3 & 5407 & .4 & 9 & .4543 \\
\bottomrule
\end{tabular}
\end{center}
\end{minipage}
This renders as
Release History
- 0.3.2:
- Included subcooled liquid data in the
Requestcapability
- Included subcooled liquid data in the
- 0.2.1
- bugfix: set
leftandrightparameters in allnumpy.interp()tonumpy.nanto override the pinning default for extrapolated values
- bugfix: set
- 0.2.0
- Added the
Requestclass for dynamically selecting and outputting (as LaTeX) steam table blocks requested by (for example) exam problems
- Added the
- 0.1.9
- bugfix: allows for specification of
xas 0
- bugfix: allows for specification of
- 0.1.8
- Update readme
- 0.1.7
- Updated pandas indexing for saturated table LaTeX printing
- 0.1.5
- Updated interpolators
- 0.1.1
- Updated pyproject.toml and README.md
- 0.1.0
- Initial version
Meta
Cameron F. Abrams – cfa22@drexel.edu
Distributed under the MIT license. See LICENSE for more information.
https://github.com/cameronabrams
Contributing
- Fork it (https://github.com/cameronabrams/sandlersteam/fork)
- Create your feature branch (
git checkout -b feature/fooBar) - Commit your changes (
git commit -am 'Add some fooBar') - Push to the branch (
git push origin feature/fooBar) - Create a new Pull Request
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sandlersteam-0.3.2.tar.gz.
File metadata
- Download URL: sandlersteam-0.3.2.tar.gz
- Upload date:
- Size: 94.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0855f801ac93c7b587c3443cf21948126e449e9ddb3c00c2459c960574d9c24
|
|
| MD5 |
1bb32c721d8e259a6b659e421ed33fb2
|
|
| BLAKE2b-256 |
8bbac9fa89aeed5a157cbc9242a6d47823997d3bae4fe13ff3ccbdb7d7345357
|
File details
Details for the file sandlersteam-0.3.2-py3-none-any.whl.
File metadata
- Download URL: sandlersteam-0.3.2-py3-none-any.whl
- Upload date:
- Size: 31.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b65798c498653aaff0d9f7aaa2840e9098235d4c72494c945a0127f8621951b
|
|
| MD5 |
2279434da2e4135e7273d4ea622e7306
|
|
| BLAKE2b-256 |
3cecf297f758f64d42515d93465a29e94923d20acc6b351e08bdb8a12437a4e9
|