/[MITgcm]/MITgcm_contrib/MPMice/beaufort/code/CPL_MPMICE.h
ViewVC logotype

Diff of /MITgcm_contrib/MPMice/beaufort/code/CPL_MPMICE.h

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.2 by dimitri, Fri Feb 3 14:08:28 2012 UTC revision 1.6 by dimitri, Thu Oct 2 22:02:55 2014 UTC
# Line 19  Line 19 
19  !     OceanGridsizeTag  !     OceanGridsizeTag
20  !     ocean model Nx and Ny dimensions: 2 integers  !     ocean model Nx and Ny dimensions: 2 integers
21    
22    !     xCtag
23    !     longitude East of center of grid cell
24    !     Nx * Ny Real*8 array
25    
26    !     yCtag
27    !     latitude North of center of grid cell
28    !     Nx * Ny Real*8 array
29    
30    !     xGtag
31    !     longitude East of SouthWest corner
32    !     Nx * Ny Real*8 array
33    
34    !     yGtag
35    !     latitude North of SouthWest corner
36    !     Nx * Ny Real*8 array
37    
38    !     dxGtag
39    !     distance in m between SouthWest and SouthEast corner
40    !     Nx * Ny Real*8 array
41    
42    !     dyGtag
43    !     distance in m between SouthWest and NorthEast corner
44    !     Nx * Ny Real*8 array
45    
46    !     aCStag
47    !     cosine(alpha) relative to geographic direction at grid cell center
48    !     Nx * Ny Real*8 array
49    
50    !     aSNtag
51    !     sine(alpha) relative to geographic direction at grid cell center
52    !     Nx * Ny Real*8 array
53    
54    !     hFacCtag
55    !     landmask of center of grid cell, 0 is land, >0 is ocean
56    !     Nx * Ny Real*8 array
57    
58  !     AreaBcTag  !     AreaBcTag
59  !     open boundary ice area (fractional: 0-1) at the tracer points  !     open boundary ice area (fractional: 0-1) at the tracer points
60  !     2*(Nx+Ny)-4 Real*8 array  !     2*(Nx+Ny)-4 Real*8 array
# Line 89  Line 125 
125  !     where rhoice = 910 kg / m^3  !     where rhoice = 910 kg / m^3
126  !     Nx * Ny Real*8 array  !     Nx * Ny Real*8 array
127    
128    !     UiceTag
129    !     zonal ice velocity in m/s at South-West C-grid U point
130    !     >0 from West to East
131    !     Nx * Ny Real*8 array
132    
133    !     ViceTag
134    !     meridional ice velocity in m/s at South-West C-grid V point
135    !     >0 from South to North
136    !     Nx * Ny Real*8 array
137    
138  !     UwindTag  !     UwindTag
139  !     10-m u-wind at the tracer points (m/s)  !     10-m u-wind at the tracer points (m/s)
140  !     >0 from West to East  !     >0 from West to East
# Line 165  Line 211 
211  !     Nx * Ny Real*8 array  !     Nx * Ny Real*8 array
212    
213  !     WaterFluxTag  !     WaterFluxTag
214  !     freshwater flux at tracer point (m/s)  !     freshwater flux at tracer point ( kg/m^2/s )
215  !     WaterFlux is computed for ice-covered area only  !     WaterFlux is computed for ice-covered area only
216  !     > 0 for decrease in ocean salinity  !     > 0 for decrease in ocean salinity
217  !     Nx * Ny Real*8 array  !     Nx * Ny Real*8 array
# Line 180  Line 226 
226        INTEGER     OceanTimeTag        INTEGER     OceanTimeTag
227        INTEGER     IceTimeTag        INTEGER     IceTimeTag
228        INTEGER     OceanGridsizeTag        INTEGER     OceanGridsizeTag
229          INTEGER     xCtag , yCtag
230          INTEGER     xGtag , yGtag
231          INTEGER     aCStag, aSNtag
232          INTEGER     dxGtag, dyGtag
233          INTEGER     hFacCtag
234        INTEGER     AreaBcTag        INTEGER     AreaBcTag
235        INTEGER     HeffBcTag        INTEGER     HeffBcTag
236        INTEGER     HsnowBcTag        INTEGER     HsnowBcTag
# Line 190  Line 241 
241        INTEGER     HeffTag        INTEGER     HeffTag
242        INTEGER     HsnowTag        INTEGER     HsnowTag
243        INTEGER     HsaltTag        INTEGER     HsaltTag
244          INTEGER     UiceTag
245          INTEGER     ViceTag
246        INTEGER     UwindTag        INTEGER     UwindTag
247        INTEGER     VwindTag        INTEGER     VwindTag
248        INTEGER     LwDownTag        INTEGER     LwDownTag
# Line 212  Line 265 
265        PARAMETER ( OceanTimeTag     = 10001001 )        PARAMETER ( OceanTimeTag     = 10001001 )
266        PARAMETER ( IceTimeTag       = 10001002 )        PARAMETER ( IceTimeTag       = 10001002 )
267        PARAMETER ( OceanGridsizeTag = 10002001 )        PARAMETER ( OceanGridsizeTag = 10002001 )
268          PARAMETER ( xCtag            = 10002002 )
269          PARAMETER ( yCtag            = 10002003 )
270          PARAMETER ( xGtag            = 10002004 )
271          PARAMETER ( yGtag            = 10002005 )
272          PARAMETER ( dxGtag           = 10002006 )
273          PARAMETER ( dyGtag           = 10002007 )
274          PARAMETER ( aCStag           = 10002008 )
275          PARAMETER ( aSNtag           = 10002009 )
276          PARAMETER ( hFacCtag         = 10002010 )
277        PARAMETER ( AreaBcTag        = 10003001 )        PARAMETER ( AreaBcTag        = 10003001 )
278        PARAMETER ( HeffBcTag        = 10003002 )        PARAMETER ( HeffBcTag        = 10003002 )
279        PARAMETER ( HsnowBcTag       = 10003003 )        PARAMETER ( HsnowBcTag       = 10003003 )
# Line 222  Line 284 
284        PARAMETER ( HeffTag          = 10004002 )        PARAMETER ( HeffTag          = 10004002 )
285        PARAMETER ( HsnowTag         = 10004003 )        PARAMETER ( HsnowTag         = 10004003 )
286        PARAMETER ( HsaltTag         = 10004004 )        PARAMETER ( HsaltTag         = 10004004 )
287          PARAMETER ( UiceTag          = 10004005 )
288          PARAMETER ( ViceTag          = 10004006 )
289        PARAMETER ( UwindTag         = 10005001 )        PARAMETER ( UwindTag         = 10005001 )
290        PARAMETER ( VwindTag         = 10005002 )        PARAMETER ( VwindTag         = 10005002 )
291        PARAMETER ( LwDownTag        = 10005101 )        PARAMETER ( LwDownTag        = 10005101 )

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.6

  ViewVC Help
Powered by ViewVC 1.1.22