/[MITgcm]/MITgcm_contrib/jscott/code_changed/THSICE_PARAMS.h
ViewVC logotype

Annotation of /MITgcm_contrib/jscott/code_changed/THSICE_PARAMS.h

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


Revision 1.3 - (hide annotations) (download)
Tue Aug 21 15:59:48 2007 UTC (19 years ago) by jscott
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +1 -1 lines
File MIME type: text/plain
FILE REMOVED
remove obsolete directory

1 jscott 1.3 C $Header: /u/gcmpack/MITgcm_contrib/jscott/code_changed/THSICE_PARAMS.h,v 1.2 2007/05/01 19:38:38 jscott Exp $
2 jscott 1.1 C $Name: $
3    
4     #ifdef ALLOW_THSICE
5     C *==========================================================*
6     C | THSICE_PARAMS.h
7     C | o Header file for Therm_SeaIce package parameters:
8     C | - basic parameter ( I/O frequency, etc ...)
9     C | - physical constants (used in therm_SeaIce pkg)
10     C *==========================================================*
11    
12     C----------------------------------------------------------------------------
13     C.. Common blocks for almost everything that the sea ice model passes around.
14     C----------------------------------------------------------------------------
15    
16     C-- COMMON / THSICE_PHYSPAR_R / physical (real) parameter
17     C.. densities
18     C rhos :: density of snow (kg/m^3)
19     C rhoi :: density of ice (kg/m^3)
20     C rhosw :: density of seawater (kg/m^3)
21     C rhofw :: density of fresh water (kg/m^3)
22     C rhoiw :: ocean-ice density difference (kg/m^3)
23     C.. specific heats
24     C cpice :: specific heat of fresh ice (J/kg/K)
25     C cpwater :: specific heat of water (J/kg/K)
26     C .. thermal conductivity. QQ check units
27     C kice :: thermal conductivity of pure ice (W/m/K)
28     C ksnow :: thermal conductivity of snow (W/m/K)
29     C .. heat transfer coefficient
30     C transcoef :: transfer coef between ice and water (unitless)
31     C .. latent heat
32     C Lfresh :: latent heat of melting of pure ice (J/kg)
33     C .. Enthalpy
34     C qsnow :: snow enthalpy (J/kg)
35     C .. Albedo
36 jscott 1.2 C albColdSnow :: albedo of cold (=dry) new snow (Tsfc < tempSnowAlb)
37 jscott 1.1 C albWarmSnow :: albedo of warm (=wet) new snow (Tsfc = 0)
38 jscott 1.2 C tempSnowAlb :: temperature transition from ColdSnow to WarmSnow Alb. (oC)
39 jscott 1.1 C albOldSnow :: albedo of old snow (snowAge > 35.d)
40     C albIceMax :: max albedo of bare ice (thick ice)
41     C albIceMin :: minimum ice albedo (very thin ice)
42     C hAlbIce :: ice thickness for albedo transition: thin/thick ice albedo
43     C hAlbSnow :: snow thickness for albedo transition: snow/ice albedo
44     C hNewSnowAge :: new snow thickness that refresh the snow-age (by 1/e)
45     C snowAgTime :: snow aging time scale (s)
46     C .. Solar parameters
47     C i0 :: fraction of penetrating solar rad
48     C ksolar :: bulk solar abs coeff of sea ice (m-1)
49     C .. Salinity
50     C saltice :: salinity of ice (o/oo)
51     C S_winton :: winton salinity of ice (o/oo)
52     C mu_Tf :: Tf:brine salinity ratio (C/ppt)
53     C .. melting
54     C Tf0kel :: Freezing temp of fresh ice in Kelvin = 273.15
55     C Tmlt1 :: melting temp; depends on S (C)
56     C .. Min/Max
57     C himin :: minimum thickness for ice (m)
58     C Terrmax :: temperature convergence precision (C)
59     C hiMax :: Maximum thickness for ice (m)
60     C hsMax :: Maximum thickness for snow (m)
61     C .. for fractional ice
62     C iceMaskmax :: maximum Ice fraction (=1 for no fractional ice)
63     C iceMaskmin :: mimimum Ice fraction (=1 for no fractional ice)
64     C himin0 :: minimum ice height (=himin for no fractional ice)
65     C frac_energy:: fraction of energy going to melting (=0 for no fract. ice)
66     C hihig :: ice height above which freezing only occurs over open ocean
67     C (=large for no fractional ice)
68     C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
69    
70     COMMON / THSICE_PHYSPAR_R /
71     & rhos, rhoi, rhosw, rhofw, rhoiw,
72     & cpice, cpwater,
73     & kice, ksnow,
74     & transcoef, Lfresh, qsnow,
75 jscott 1.2 & albColdSnow, albWarmSnow, tempSnowAlb,
76     & albOldSnow, hNewSnowAge, snowAgTime,
77 jscott 1.1 & albIceMax, albIceMin, hAlbIce, hAlbSnow,
78     & i0, ksolar,
79     & saltice, S_winton, mu_Tf,
80     & Tf0kel, Tmlt1,
81     & himin, Terrmax, hiMax, hsMax,
82     & iceMaskmax, iceMaskmin, himin0,
83     & frac_energy, hihig
84    
85     _RL rhos
86     _RL rhoi
87     _RL rhosw
88     _RL rhofw
89     _RL rhoiw
90     _RL cpice
91     _RL cpwater
92     _RL kice
93     _RL ksnow
94     _RL transcoef
95     _RL Lfresh
96     _RL qsnow
97     _RL albColdSnow
98     _RL albWarmSnow
99 jscott 1.2 _RL tempSnowAlb
100 jscott 1.1 _RL albOldSnow
101 jscott 1.2 _RL hNewSnowAge
102     _RL snowAgTime
103 jscott 1.1 _RL albIceMax
104     _RL albIceMin
105     _RL hAlbIce
106     _RL hAlbSnow
107     _RL i0
108     _RL ksolar
109     _RL saltice
110     _RL S_winton
111     _RL mu_Tf
112     _RL Tf0kel
113     _RL Tmlt1
114     _RL himin
115     _RL Terrmax
116     _RL hiMax
117     _RL hsMax
118     _RL iceMaskmax
119     _RL iceMaskmin
120     _RL himin0
121     _RL frac_energy
122     _RL hihig
123    
124     C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
125    
126     C-- COMMON / THSICE_PAR_L / ice model (logical) parameters
127     C stepFwd_oceMxL :: step forward mixed-layer T & S (slab-ocean)
128     C thSIce_tave_mdsio :: write TimeAverage output using MDSIO
129     C thSIce_snapshot_mdsio :: write snap-shot output using MDSIO
130     C thSIce_mon_stdio :: write monitor to std-outp
131     C thSIce_tave_mnc :: write TimeAverage output using MNC
132     C thSIce_snapshot_mnc :: write snap-shot output using MNC
133     C thSIce_mon_mnc :: write monitor to netcdf file
134     C thSIce_pickup_read_mnc :: pickup read w/ MNC
135     C thSIce_pickup_write_mnc :: pickup write w/ MNC
136     C thSIce_pickup_write_mdsio :: pickup write w/ MDSIO
137     COMMON / THSICE_PAR_L /
138     & stepFwd_oceMxL,
139     & thSIce_tave_mdsio, thSIce_snapshot_mdsio, thSIce_mon_stdio,
140     & thSIce_tave_mnc, thSIce_snapshot_mnc, thSIce_mon_mnc,
141     & thSIce_pickup_read_mnc,
142     & thSIce_pickup_write_mdsio,
143     & thSIce_pickup_write_mnc
144    
145     LOGICAL stepFwd_oceMxL
146     LOGICAL thSIce_tave_mdsio, thSIce_snapshot_mdsio, thSIce_mon_stdio
147     LOGICAL thSIce_tave_mnc, thSIce_snapshot_mnc, thSIce_mon_mnc
148     LOGICAL thSIce_pickup_read_mnc
149     LOGICAL thSIce_pickup_write_mdsio
150     LOGICAL thSIce_pickup_write_mnc
151    
152     C-- COMMON / THSICE_PAR_I / ice model (integer) parameters
153     C startIceModel :: =1 : start ice model at nIter0 ; =0 : use pickup files
154     C :: -1 : start from a small pickup (without Mix.Layer)
155     C nitMaxTsf :: maximum Nb of iter to find Surface Temp (Trsf)
156     COMMON / THSICE_PAR_I /
157     & startIceModel, nitMaxTsf
158    
159     INTEGER startIceModel
160     INTEGER nitMaxTsf
161    
162     C-- COMMON / THSICE_PAR_R / ice model (real) parameters
163     C thSIce_deltaT :: ice model time-step, seaice extend/thicken
164     C thSIce_dtTemp :: ice model time-step, solve4temp
165     C ocean_deltaT :: ocean mixed-layer time-step
166     C tauRelax_MxL :: Relaxation time scale for MixLayer T & S [s]
167     C hMxL_default :: default value for ocean MixLayer thickness [m]
168     C sMxL_default :: default value for salinity in MixLayer [psu]
169     C vMxL_default :: default value for ocean current velocity in MxL [m/s]
170     C stressReduction :: reduction factor for wind-stress under sea-ice [0-1]
171     C thSIce_taveFreq :: Frequency^-1 for time-Aver. output [s]
172     C thSIce_diagFreq :: Frequency^-1 for diagnostic output [s]
173     C thSIce_monFreq :: Frequency^-1 for monitor output [s]
174     COMMON / THSICE_PAR_R /
175     & thSIce_deltaT, thSIce_dtTemp, ocean_deltaT, tauRelax_MxL,
176     & hMxL_default, sMxL_default, vMxL_default,
177     & stressReduction,
178     & thSIce_taveFreq, thSIce_diagFreq, thSIce_monFreq
179    
180     _RL thSIce_deltaT, thSIce_dtTemp, ocean_deltaT, tauRelax_MxL
181     _RL hMxL_default, sMxL_default, vMxL_default
182     _RL stressReduction
183     _RL thSIce_taveFreq, thSIce_diagFreq, thSIce_monFreq
184    
185     C-- COMMON / THSICE_PAR_C / ice model (character) parameters
186     C thSIceFract_InitFile :: File name for initial ice fraction
187     C thSIceThick_InitFile :: File name for initial ice thickness
188     C thSIceSnowH_InitFile :: File name for initial snow thickness
189     C thSIceSnowA_InitFile :: File name for initial snow Age
190     C thSIceEnthp_InitFile :: File name for initial ice enthalpy
191     C thSIceTsurf_InitFile :: File name for initial surf. temp
192     COMMON / THSICE_PAR_C /
193     & thSIceFract_InitFile,
194     & thSIceThick_InitFile,
195     & thSIceSnowH_InitFile,
196     & thSIceSnowA_InitFile,
197     & thSIceEnthp_InitFile,
198     & thSIceTsurf_InitFile
199     CHARACTER*(MAX_LEN_FNAM) thSIceFract_InitFile
200     CHARACTER*(MAX_LEN_FNAM) thSIceThick_InitFile
201     CHARACTER*(MAX_LEN_FNAM) thSIceSnowH_InitFile
202     CHARACTER*(MAX_LEN_FNAM) thSIceSnowA_InitFile
203     CHARACTER*(MAX_LEN_FNAM) thSIceEnthp_InitFile
204     CHARACTER*(MAX_LEN_FNAM) thSIceTsurf_InitFile
205    
206     C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
207    
208     #endif /* ALLOW_THSICE */
209    
210     CEH3 ;;; Local Variables: ***
211     CEH3 ;;; mode:fortran ***
212     CEH3 ;;; End: ***
213    

  ViewVC Help
Powered by ViewVC 1.1.22