/[MITgcm]/MITgcm/pkg/icefront/ICEFRONT.h
ViewVC logotype

Annotation of /MITgcm/pkg/icefront/ICEFRONT.h

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


Revision 1.7 - (hide annotations) (download)
Wed Feb 17 20:31:23 2010 UTC (14 years, 3 months ago) by dimitri
Branch: MAIN
CVS Tags: checkpoint62c, checkpoint62e, checkpoint62d
Changes since 1.6: +1 -3 lines
File MIME type: text/plain
changing diagnostic computations to local, 1D array with no overlaps

1 dimitri 1.7 C $Header: /u/gcmpack/MITgcm/pkg/icefront/ICEFRONT.h,v 1.6 2010/02/16 21:25:22 dimitri Exp $
2 dimitri 1.1 C $Name: $
3    
4     #ifdef ALLOW_ICEFRONT
5    
6     CBOP
7     C !ROUTINE: ICEFRONT.h
8    
9     C !DESCRIPTION: \bv
10     C /==========================================================\
11     C | ICEFRONT.h |
12     C | o Basic header thermodnynamic shelf ice package. |
13     C | Contains all ICEFRONT field declarations. |
14     C \==========================================================/
15    
16     C-----------------------------------------------------------------------
17     C
18     C-- Constants that can be set in data.icefront
19 dimitri 1.4 C ICEFRONTdepthFile - name of icefront depth file (m)
20     C 2D file containing depth of the ice front
21     C at each model grid cell
22     C ICEFRONTlengthFile - name of icefront length file (m/m^2)
23     C 2D file containing the ratio of the horizontal
24     C length of the ice front in each model grid cell
25     C divided by the grid cell area
26 dimitri 1.1 C ICEFRONTheatTransCoeff - heat transfer coefficient that determines
27     C heat flux into icefront (m/s)
28     C ICEFRONTsaltTransCoeff - salinity transfer coefficient that determines
29     C salt flux into icefront (m/s)
30     C ICEFRONTlatentHeat - latent heat of fusion (J/kg)
31 dimitri 1.4 C applyIcefrontTendT/S -
32 dimitri 1.1 C
33     C-- Fields
34 dimitri 1.4 C K_icefront - # of icefront model levels at every horizontal location (2D)
35     C R_icefront - icefront depth [m] (2D)
36     C icefrontlength - icefront horizontal length divided by grid cell area [m/m^2] (2D)
37     C icefront_TendT - temperature tendency (Kelvin/s)
38     C icefront_TendS - salinity tendency (psu/s)
39 dimitri 1.1 C-----------------------------------------------------------------------
40     C \ev
41     CEOP
42    
43 dimitri 1.4 COMMON /ICEFRONT_PARMS_I/ K_icefront
44     INTEGER K_icefront (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
45    
46 dimitri 1.1 COMMON /ICEFRONT_PARMS_R/
47     & ICEFRONTheatTransCoeff, ICEFRONTsaltTransCoeff,
48     & rhoIcefront, ICEFRONTkappa,
49     & ICEFRONTlatentHeat, recip_ICEFRONTlatentHeat,
50     & ICEFRONTheatCapacity_Cp,
51 dimitri 1.2 & ICEFRONTthetaSurface
52 dimitri 1.1 _RL ICEFRONTheatTransCoeff
53     _RL ICEFRONTsaltTransCoeff
54     _RL ICEFRONTlatentHeat
55     _RL ICEFRONTheatCapacity_Cp
56     _RL rhoIcefront
57     _RL ICEFRONTkappa
58     _RL recip_ICEFRONTlatentHeat
59     _RL ICEFRONTthetaSurface
60    
61     COMMON /ICEFRONT_FIELDS_RL/
62 dimitri 1.4 & icefront_TendT,
63     & icefront_TendS
64 dimitri 1.6 _RL icefront_TendT (1:sNx,1:sNy,Nr,nSx,nSy)
65     _RL icefront_TendS (1:sNx,1:sNy,Nr,nSx,nSy)
66 dimitri 1.1
67     COMMON /ICEFRONT_FIELDS_RS/
68     & R_icefront,
69 dimitri 1.5 & icefrontlength
70 dimitri 1.6 _RS R_icefront (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
71     _RS icefrontlength (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
72 dimitri 1.1
73     LOGICAL ICEFRONTisOn
74 dimitri 1.4 LOGICAL applyIcefrontTendT
75     LOGICAL applyIcefrontTendS
76 dimitri 1.1 COMMON /ICEFRONT_PARMS_L/
77     & ICEFRONTisOn,
78 dimitri 1.4 & applyIcefrontTendT,
79     & applyIcefrontTendS
80 dimitri 1.1
81 dimitri 1.4 CHARACTER*(MAX_LEN_FNAM) ICEFRONTlengthFile
82     CHARACTER*(MAX_LEN_FNAM) ICEFRONTdepthFile
83 dimitri 1.1 COMMON /ICEFRONT_PARM_C/
84 dimitri 1.4 & ICEFRONTlengthFile,
85     & ICEFRONTdepthFile
86 dimitri 1.1
87     #endif /* ALLOW_ICEFRONT */

  ViewVC Help
Powered by ViewVC 1.1.22