forked from johannesgerer/jburkardt-m
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tcell_flow_movie.html
181 lines (154 loc) · 4.97 KB
/
tcell_flow_movie.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<html>
<head>
<title>
TCELL_FLOW_MOVIE - Animation of Flow Solutions in a T-Cell
</title>
</head>
<body bgcolor="#EEEEEE" link="#CC0000" alink="#FF3300" vlink="#000055">
<h1 align = "center">
TCELL_FLOW_MOVIE <br> Animation of Flow Solutions in a T-Cell
</h1>
<hr>
<p>
<b>TCELL_FLOW_MOVIE</b>
is a MATLAB program which
animates the pressure or velocity data in solutions of the
incompressible parameterized flow problem in a 2D T-cell.
</p>
<h3 align = "center">
Licensing:
</h3>
<p>
The computer code and data files described and made available on this web page
are distributed under
<a href = "../../txt/gnu_lgpl.txt">the GNU LGPL license.</a>
</p>
<h3 align = "center">
Languages:
</h3>
<p>
<b>TCELL_FLOW_MOVIE</b> is available in
<a href = "../../m_src/tcell_flow_movie/tcell_flow_movie.html">a MATLAB version</a>.
</p>
<h3 align = "center">
Related Data and Programs:
</h3>
<p>
<a href = "../../m_src/file_name_sequence/file_name_sequence.html">
FILE_NAME_SEQUENCE</a>,
a MATLAB program which
demonstrates four ways to generate a sequence of filenames.
</p>
<p>
<a href = "../../data/mp4/mp4.html">
MP4</a>,
a data directory which
contains examples of MP4 files,
the MPEG-4 movie file format for 2D animation;
</p>
<p>
<a href = "../../m_src/peak_movie/peak_movie.html">
PEAK_MOVIE</a>,
a MATLAB program which
creates the pieces of an animation, one frame at a time.
Each frame is independently created and saved as a JPEG file.
</p>
<p>
<a href = "../../f77_src/tcell/tcell.html">
TCELL</a>,
a FORTRAN77 program which
solves the Navier Stokes fluid flow equations in a 2D T-shaped region.
</p>
<p>
<a href = "../../datasets/tcell_flow/tcell_flow.html">
TCELL_FLOW</a>,
a dataset directory which
contains 500 time steps of Navier-Stokes flow in a 2D T-shaped region.
</p>
<p>
<a href = "../../f77_src/tcell_mass/tcell_mass.html">
TCELL_MASS</a>,
a FORTRAN77 program which
computes the mass matrix for the T-Cell problem,
which is needed in order to for TCELL_ROM to run the
reduced order model (ROM) of the problem.
</p>
<p>
<a href = "../../m_src/velocity_arrows_grid/velocity_arrows_grid.html">
VELOCITY_ARROWS_GRID</a>,
a MATLAB program which
reads files of node and velocity data, and, using interpolation, creates a
vector plot with arrows
place on a uniform grid of the user's specification.
</p>
<h3 align = "center">
Source Code:
</h3>
<p>
<ul>
<li>
<a href = "tcell_flow_jpeg.m">tcell_flow_jpeg.m</a>,
is a MATLAB M script file which reads EACH velocity file,
displaying the normalized or unnormalized field, and
making a JPEG
file of each image for assembly into an animation.
</li>
<li>
<a href = "tcell_flow_movie.m">tcell_flow_movie.m</a>,
is a MATLAB M script file which can read the XY coordinate file and
all the time dependent velocity files, and create an animation.
It displays either the velocity or direction field, depending on
the internal value of the logical parameter <b>normalized</b>.
To keep this script happy, the "#" comment lines were removed
from the XY file.
</li>
<li>
<a href = "tcell_flow_png.m">tcell_flow_png.m</a>,
is a MATLAB M script file which reads EACH velocity file,
displaying the normalized or unnormalized field, and
making a <a href = "../../data/png/png.html">PNG</a>
file of each image for assembly into an animation.
</li>
<li>
<a href = "tcell_flow_snapshot.m">tcell_flow_snapshot.m</a>,
is a MATLAB M script file which reads ONE velocity file,
displaying the normalized or unnormalized field.
</li>
</ul>
</p>
<h3 align = "center">
Examples and Tests:
</h3>
<p>
<ul>
<li>
<a href =
"../../datasets/tcell_flow/xy.txt">
xy.txt</a>, the XY coordinates associated
with the nodes.
</li>
<li>
<a href =
"../../datasets/tcell_flow/elements.txt">
elements.txt</a>, a grouping of the
nodes into 6 node quadratic finite elements.
</li>
<li>
<a href =
"../../datasets/tcell_flow/steady.txt">
steady.txt</a>,
the steady state velocity field.
</li>
</ul>
</p>
<p>
You can go up one level to <a href = "../m_src.html">
the MATLAB source codes</a>.
</p>
<hr>
<i>
Last revised on 02 November 2005.
</i>
<!-- John Burkardt -->
</body>
</html>