NCCOOS Trac Projects: Top | Web | Platforms | Processing | Viz | Sprints | Sandbox | (Wind)

root/gliderproc/trunk/MATLAB/opnml/FEM/fem_icq4_struct.m

Revision 495 (checked in by cbc, 11 years ago)

Initial import of Stark code.

Line 
1 %FEM_ICQ4_STRUCT - FEM icq4 data description structure
2 % FEM_ICQ4_STRUCT is a structure containing the
3 % components that make up a QUODDY4 HOTSTART data file.
4 %
5 % The struct array FEM_ICQ4_STRUCT contains the following fields:
6 %   INFO LINES
7 %      .codename     - Code name that generated the icq4 file [char array]
8 %      .casename     - Name of computational domain
9 %      .inqfilename  - QUODDY4 .inq filename
10 %      .initcondname - Starting .icq4 filename
11 %      .nn           - Number of horizontal nodes
12 %      .nnv          - Number of vertical nodes
13 %      .day          - Simulation day of month
14 %      .month        - Simulation month of year
15 %      .year         - Simulation year
16 %      .curr_seconds - Number of seconds elasped since start of day
17 %
18 %   DATA BLOCK - field names are same as QUODDY4 OUTPUTQ4 variable names
19 %                all *MID* fields are at time level of icq4 write
20 %                all *OLD* fields are at previous time level
21 %      .HMID   - total depth             [nn x 1  double array]
22 %      .UMID   - depth-averaged u-vel        "    "     "   
23 %      .VMID   - depth-averaged v-vel        "    "     "   
24 %      .HOLD   - total depth                 "    "     "   
25 %      .UOLD   - depth-averaged u-vel        "    "     "   
26 %      .VOLD   - depth-averaged v-vel        "    "     "   
27 %      .ZMID   - vertical grid position at current time  [nn x nnv double]
28 %      .ZOLD   - vertical grid position at previous time   "     "     "
29 %      .UZMID  - 3-D east-west horizontal velocity         "     "     "
30 %      .VZMID  - 3-D east-west horizontal v-velocity       "     "     "
31 %      .WZMID  - 3-D east-west horizontal w-velocity       "     "     "
32 %      .Q2MID  - 3-D turbulence field                      "     "     "
33 %      .Q2LMID - 3-D turbulence field                      "     "     "
34 %      .TMPMID - 3-D temperature field                     "     "     "
35 %      .SALMID - 3-D salinity field                        "     "     "
36 %
37 %
38 % (FEM_ICQ4_STRUCT is NOT a function; this is just the description
39 %  file for the structure.)
40
41 %
42 %        Brian O. Blanton
43 %        Department of Marine Sciences
44 %        15-1A Venable Hall
45 %        CB# 3300
46 %        University of North Carolina
47 %        Chapel Hill, NC
48 %                 27599-3300
49 %
50 %        919-962-4466
51 %        blanton@marine.unc.edu
52 %
53 %        Fall 1998
Note: See TracBrowser for help on using the browser.