Revision 495
(checked in by cbc, 12 years ago)
|
Initial import of Stark code.
|
Line | |
---|
1 |
%V3R Dartmouth FEM File Standard Filetype (Description). |
---|
2 |
% |
---|
3 |
% Output format for a 3-D, Steady-state, vector field. |
---|
4 |
% |
---|
5 |
% This filetype is read by the OPNML MATLAB function |
---|
6 |
% read_v2c. Type "help read_v2c" for more information. |
---|
7 |
% |
---|
8 |
% The .v3r file contains 3 header lines: |
---|
9 |
% 1) The geometric meshname |
---|
10 |
% 2) User-defined file description line |
---|
11 |
% 3) NNV, the number of vertical sigme mesh nodes |
---|
12 |
% under each horizontal 2-D node. |
---|
13 |
% |
---|
14 |
% Then, there are NN*NNV lines of the form: |
---|
15 |
% I Z(I,J) U(I,J) V(I,J) W(I,J) |
---|
16 |
% |
---|
17 |
% where: Z(I,J) = vertical coordinate at horizontal node I, |
---|
18 |
% vertical node J (MKS) |
---|
19 |
% (U,V,W) = (x,y,z) vector amplitudes of the 3-D |
---|
20 |
% velocity at node (I,J) |
---|
21 |
% J=1,NNV - the inner loop over 1-D vertical nodes |
---|
22 |
% I=1,NN - the outer loop over 2-D horizontal nodes |
---|
23 |
% NN = the number of horizontal nodes in the mesh |
---|
24 |
% |
---|
25 |
% See the document "DATA FILE STANDARDS FOR THE GULF OF MAINE PROJECT" |
---|
26 |
% for more details. |
---|
27 |
|
---|