Revision 495
(checked in by cbc, 12 years ago)
|
Initial import of Stark code.
|
Line | |
---|
1 |
%S3R Dartmouth FEM File Standard Filetype (Description). |
---|
2 |
% |
---|
3 |
% Output format for a 3-D, real-valued (steady-state) scalar field. |
---|
4 |
% |
---|
5 |
% This filetype is read by the OPNML MATLAB function |
---|
6 |
% READ_V2R. Type "help read_v2r" for more information. |
---|
7 |
% |
---|
8 |
% The .s3r file contains 3 header lines: |
---|
9 |
% 1) The geometric meshname |
---|
10 |
% 2) User-defined file description line |
---|
11 |
% 3) NNV - number of vertical nodes |
---|
12 |
% |
---|
13 |
% Then, there are NN lines of the form: |
---|
14 |
% I Z(I,J) S(I,J) |
---|
15 |
% |
---|
16 |
% where: Z(I,J) - vertical co-ordinate at node (I,J) |
---|
17 |
% S(I,J) - scalar value at node I,J |
---|
18 |
% J=1,NNV - the inner loop over 1-D vertical nodes |
---|
19 |
% I=1,NN - the outer loop over 2-D horizontal nodes |
---|
20 |
% NN - the number of horizontal nodes in the mesh |
---|
21 |
% |
---|
22 |
% See the document "DATA FILE STANDARDS FOR THE GULF OF MAINE PROJECT" |
---|
23 |
% for more details. |
---|
24 |
|
---|