/[MITgcm]/MITgcm/pkg/shelfice/SHELFICE.h
ViewVC logotype

Annotation of /MITgcm/pkg/shelfice/SHELFICE.h

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


Revision 1.6 - (hide annotations) (download)
Wed Sep 10 08:55:12 2008 UTC (16 years ago) by mlosch
Branch: MAIN
CVS Tags: checkpoint62, checkpoint62b, checkpoint62a, checkpoint61f, checkpoint61g, checkpoint61d, checkpoint61e, checkpoint61n, checkpoint61o, checkpoint61l, checkpoint61m, checkpoint61j, checkpoint61k, checkpoint61h, checkpoint61i, checkpoint61v, checkpoint61w, checkpoint61t, checkpoint61u, checkpoint61r, checkpoint61s, checkpoint61p, checkpoint61q, checkpoint61z, checkpoint61x, checkpoint61y
Changes since 1.5: +6 -2 lines
File MIME type: text/plain
disentangle parameters: retire shelfIceFile in data/PARM05 and substitute
with SHELFICEtopoFile in data.shelfice, update data files in verification
experiment

1 mlosch 1.6 C $Header: /u/gcmpack/MITgcm/pkg/shelfice/SHELFICE.h,v 1.5 2007/10/10 09:26:39 mlosch Exp $
2 mlosch 1.1 C $Name: $
3    
4     #ifdef ALLOW_SHELFICE
5    
6     CBOP
7     C !ROUTINE: SHELFICE.h
8    
9     C !DESCRIPTION: \bv
10     C /==========================================================\
11     C | SHELFICE.h |
12     C | o Basic header thermodnynamic shelf ice package. |
13     C | Contains all SHELFICE field declarations. |
14     C \==========================================================/
15    
16     C-----------------------------------------------------------------------
17     C
18     C-- Constants that can be set in data.shelfice
19 mlosch 1.6 C SHELFICEtopoFile - File containing the topography of the
20     C shelfice draught (unit=m)
21 mlosch 1.2 C SHELFICEloadAnomalyFile - name of shelfice load anomaly file
22 mlosch 1.1 C SHELFICEDragLinear - linear drag at bottom shelfice (1/s)
23     C SHELFICEDragQuadratic - quadratic drag at bottom shelfice (1/m)
24 mlosch 1.3 C SHELFICEheatTransCoeff - heat transfer coefficient that determines
25     C heat flux into shelfice (m/s)
26     C SHELFICEsaltTransCoeff - salinity transfer coefficient that determines
27     C salt flux into shelfice (m/s)
28 mlosch 1.1 C SHELFICElatentHeat - latent heat of fusion (J/kg)
29     C useISOMIPTD - use simple ISOMIP thermodynamics
30 mlosch 1.5 C SHELFICEconserve - use conservative form of H&O-thermodynamics
31     C following Jenkins et al. (2001, JPO)
32 mlosch 1.4 C SHELFICEboundaryLayer - turn on vertical merging of cells to for a
33     C boundary layer of drF thickness
34 mlosch 1.1 C no_slip_shelfice - set slip conditions for shelfice separately,
35     C (by default the same as no_slip_bottom)
36     C SHELFICEwriteState - enable output
37     C SHELFICE_dump_mnc - use netcdf for snapshot output
38     C SHELFICE_tave_mnc - use netcdf for time-averaged output
39     C SHELFICE_dumpFreq - analoguous to dumpFreq (= default)
40     C SHELFICE_taveFreq - analoguous to taveFreq (= default)
41     C
42     C-- Fields
43 mlosch 1.2 C ktopC - index of the top "wet cell" (2D)
44     C R_shelfIce - shelfice topography [m]
45     C shelficeLoadAnomaly - pressure load anomaly of shelfice [Pa]
46     C shelficeHeatFlux - upward heat flux [W/m^2]
47     C shelficeFreshWaterFlux - upward fresh water flux (virt. salt flux) [m/s]
48     C shelficeForcingT - analogue of surfaceForcingT
49     C shelficeForcingS - analogue of surfaceForcingS
50 mlosch 1.1 C-----------------------------------------------------------------------
51     C \ev
52     CEOP
53    
54     COMMON /SHELFICE_PARMS_I/ kTopC
55     INTEGER kTopC (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
56    
57     COMMON /SHELFICE_PARMS_R/
58     & SHELFICE_dumpFreq, SHELFICE_taveFreq,
59 mlosch 1.3 & SHELFICEheatTransCoeff, SHELFICEsaltTransCoeff,
60     & rhoShelfice, SHELFICEkappa,
61 mlosch 1.1 & SHELFICElatentHeat, recip_SHELFICElatentHeat,
62 mlosch 1.3 & SHELFICEheatCapacity_Cp,
63     & SHELFICEthetaSurface,
64 mlosch 1.1 & SHELFICEDragLinear, SHELFICEDragQuadratic
65     _RL SHELFICE_dumpFreq, SHELFICE_taveFreq
66 mlosch 1.3 _RL SHELFICEheatTransCoeff
67     _RL SHELFICEsaltTransCoeff
68 mlosch 1.1 _RL SHELFICElatentHeat
69 mlosch 1.3 _RL SHELFICEheatCapacity_Cp
70     _RL rhoShelfice
71     _RL SHELFICEkappa
72 mlosch 1.1 _RL recip_SHELFICElatentHeat
73     _RL SHELFICEDragLinear
74     _RL SHELFICEDragQuadratic
75 mlosch 1.3 _RL SHELFICEthetaSurface
76 mlosch 1.1
77     COMMON /SHELFICE_FIELDS_RL/
78     & shelficeForcingT,
79     & shelficeForcingS
80     _RL shelficeForcingT (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
81     _RL shelficeForcingS (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
82    
83     COMMON /SHELFICE_FIELDS_RS/
84     & R_shelfIce,
85 mlosch 1.2 & shelficeLoadAnomaly,
86 mlosch 1.1 & shelficeHeatFlux,
87     & shelfIceFreshWaterFlux
88     _RS R_shelfIce (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
89 mlosch 1.2 _RS shelficeLoadAnomaly (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
90 mlosch 1.1 _RS shelficeHeatFlux (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
91     _RS shelficeFreshWaterFlux(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
92    
93     LOGICAL SHELFICEisOn
94     LOGICAL useISOMIPTD
95 mlosch 1.5 LOGICAL SHELFICEconserve
96 mlosch 1.4 LOGICAL SHELFICEboundaryLayer
97 mlosch 1.1 LOGICAL no_slip_shelfice
98     LOGICAL SHELFICEwriteState
99     LOGICAL SHELFICE_dump_mdsio
100     LOGICAL SHELFICE_tave_mdsio
101     LOGICAL SHELFICE_dump_mnc
102     LOGICAL SHELFICE_tave_mnc
103     COMMON /SHELFICE_PARMS_L/
104     & SHELFICEisOn,
105     & useISOMIPTD,
106 mlosch 1.5 & SHELFICEconserve,
107 mlosch 1.4 & SHELFICEboundaryLayer,
108 mlosch 1.1 & no_slip_shelfice,
109     & SHELFICEwriteState,
110     & SHELFICE_dump_mdsio,
111     & SHELFICE_tave_mdsio,
112     & SHELFICE_dump_mnc,
113     & SHELFICE_tave_mnc
114    
115 mlosch 1.2 CHARACTER*(MAX_LEN_FNAM) SHELFICEloadAnomalyFile
116 mlosch 1.6 CHARACTER*(MAX_LEN_FNAM) SHELFICEtopoFile
117 mlosch 1.2 COMMON /SHELFICE_PARM_C/
118 mlosch 1.6 & SHELFICEloadAnomalyFile,
119     & SHELFICEtopoFile
120 mlosch 1.2
121 mlosch 1.1 #endif /* ALLOW_SHELFICE */

  ViewVC Help
Powered by ViewVC 1.1.22