1 |
%FEM_DATA_STRUCT - FEM data description structure |
---|
2 |
% FEM_DATA_STRUCT is a structure containing the |
---|
3 |
% components that make up a finite element data file. |
---|
4 |
% This data structure is returned/accepted by all |
---|
5 |
% OPNML/MATLAB I/O routines that the standard |
---|
6 |
% filetypes (.src, .s2r, ...). |
---|
7 |
% |
---|
8 |
% The struct array FEM_DATA_STRUCT contains the following fields: |
---|
9 |
% INFO LINES |
---|
10 |
% .fname - filename prefix of FEM data file [char array] |
---|
11 |
% .fext - filename suffix of FEM data file [char array] |
---|
12 |
% .fpath - directory file is read from [char array] |
---|
13 |
% .gname - gridname for FEM data file [char array] |
---|
14 |
% .h1 - file header line records [char array] |
---|
15 |
% .h2 - file header line records [char array] |
---|
16 |
% .h3 - file header line records [char array] |
---|
17 |
% DATA BLOCK |
---|
18 |
% .ndim - number of dimensions of data [double array] |
---|
19 |
% .type1 - scalar|vector flag [char array] |
---|
20 |
% .type2 - real/complex flag [char array] |
---|
21 |
% .type3 - real-imag(ri) | amp-phase(ap) [char array] |
---|
22 |
% .freq - frequency for complex data [double array] |
---|
23 |
% .n - number of 2-D points [double array] |
---|
24 |
% .nnv - number of 3-D levels [double array] |
---|
25 |
% .data1 - dim 1 data (n*nnv X {1|2}) [double array] |
---|
26 |
% .data2 - dim 2 data (n*nnv X {1|2}) [double array] |
---|
27 |
% .data3 - dim 3 data (n*nnv X {1|2}) [double array] |
---|
28 |
% |
---|
29 |
% (FEM_DATA_STRUCT is NOT a function; this is just the description |
---|
30 |
% file for the structure.) |
---|
31 |
|
---|
32 |
% |
---|
33 |
% Brian O. Blanton |
---|
34 |
% Department of Marine Sciences |
---|
35 |
% 15-1A Venable Hall |
---|
36 |
% CB# 3300 |
---|
37 |
% University of North Carolina |
---|
38 |
% Chapel Hill, NC |
---|
39 |
% 27599-3300 |
---|
40 |
% |
---|
41 |
% 919-962-4466 |
---|
42 |
% blanton@marine.unc.edu |
---|
43 |
% |
---|
44 |
% Fall 1998 |
---|