forked from johannesgerer/jburkardt-f
-
Notifications
You must be signed in to change notification settings - Fork 1
/
steam_interact.html
146 lines (122 loc) · 3.3 KB
/
steam_interact.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<html>
<head>
<title>
STEAM_INTERACT - Query the NBS Steam Tables
</title>
</head>
<body bgcolor="#EEEEEE" link="#CC0000" alink="#FF3300" vlink="#000055">
<h1 align = "center">
STEAM_INTERACT <br> Query the NBS Steam Tables
</h1>
<hr>
<p>
<b>STEAM_INTERACT</b>
is a FORTRAN90 program which
allows the user to query the NBS steam tables.
</p>
<p>
The user can specify temperature
and pressure, or temperature and density, and the program will
return the computed values of a variety of quantities.
</p>
<h3 align = "center">
Related Data and Programs:
</h3>
<p>
<a href = "../../f_src/steam/steam.html">
STEAM</a>,
a FORTRAN90 library which
is based on the NBS steam table package;
</p>
<p>
<a href = "../../f77_src/steam_nbs_interact/steam_nbs_interact.html">
STEAM_NBS_INTERACT</a>,
a FORTRAN77 program which
queries the NBS steam table package;
</p>
<p>
<a href = "../../f_src/test_values/test_values.html">
TEST_VALUES</a>,
a FORTRAN90 library which
stores selected values of various mathematical,
statistical and physical functions, including some of the steam
table functions.
</p>
<h3 align = "center">
Reference:
</h3>
<p>
<ol>
<li>
Lester Haar, John Gallagher and George Kell,<br>
NBS/NRC Steam Tables:
Thermodynamic and Transport Properties and Computer Programs
for Vapor and Liquid States of Water in SI Units,<br>
Hemisphere Publishing Corporation, Washington, 1984,
TJ270.H3
</li>
<li>
C A Meyer, R B McClintock, G J Silvestri, R C Spencer,<br>
ASME Steam Tables: Thermodynamic and Transport Properties
of Steam,<br>
American Society of Mechanical Engineers, 1967.
</li>
</ol>
</p>
<h3 align = "center">
Source Code:
</h3>
<p>
<ul>
<li>
<a href = "steam_interact.f90">steam_interact.f90</a>, the
source code for an interactive query program;
</li>
<li>
<a href = "steam_interact.sh">steam_interact.sh</a>,
commands to compile, link and load the source code;
</li>
</ul>
</p>
<h3 align = "center">
Examples and Tests:
</h3>
<p>
<ul>
<li>
<a href = "input.txt">input.txt</a>, sample input to the
interactive query program;
</li>
<li>
<a href = "output.txt">output.txt</a>, output from the
interactive query program;
</li>
</ul>
</p>
<h3 align = "center">
List of Routines:
</h3>
<p>
<ul>
<li>
<b>STEAM_INTERACT</b> interactively queries the NBS/NRC Steam Table routines.
</li>
<li>
<b>OUTPUT</b> prints the values of the thermodynamic quantities.
</li>
<li>
<b>D_GTLE_RANGE</b> checks that A < X <= B.
</li>
</ul>
</p>
<p>
You can go up one level to <a href = "../f_src.html">
the FORTRAN90 source codes</a>.
</p>
<hr>
<i>
Last revised on 30 August 2005.
</i>
<!-- John Burkardt -->
</body>
</html>