-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathice.in
159 lines (103 loc) · 4.38 KB
/
ice.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
! Ice model parameters
!
!! svn $Id$
!==============================================================================
! Copyright (c) 2002-2011 The ROMS/TOMS Group !
!========================================================= Hernan G. Arango ===
! !
! Input parameters can be entered in ANY order, provided that the parameter !
! KEYWORD (usually, upper case) is typed correctly followed by "=" or "==" !
! symbols. Any comment lines are allowed and must begin with an exclamation !
! mark (!) in column one. Comments may appear to the right of a parameter !
! specification to improve documentation. All comments will ignored during !
! reading. Blank lines are also allowed and ignored. Continuation lines in !
! a parameter specification are allowed and must be preceded by a backslash !
! (\). In some instances, more than one value is required for a parameter. !
! If fewer values are provided, the last value is assigned for the entire !
! parameter array. The multiplication symbol (*), without blank spaces in !
! between, is allowed for a parameter specification. For example, in a two !
! grids nested application: !
! !
! AKT_BAK == 2*1.0d-6 2*5.0d-6 ! m2/s !
! !
! indicates that the first two entries of array AKT_BAK, in fortran column- !
! major order, will have the same value of "1.0d-6" for grid 1, whereas the !
! next two entries will have the same value of "5.0d-6" for grid 2. !
! !
! In multiple levels of nesting and/or multiple connected domains step-ups, !
! "Ngrids" entries are expected for some of these parameters. In such case, !
! the order of the entries for a parameter is extremely important. It must !
! follow the same order (1:Ngrids) as in the state variable declaration. The !
! USER may follow the above guidelines for specifying his/her values. These !
! parameters are marked by "==" plural symbol after the KEYWORD. !
! !
!==============================================================================
!
! Switch to control the computation of ice within nested and/or multiple
! connected grids.
Lice == T
!
! Time step for sea ice model [s]
DTICE == 600.d0
!
! Time step for updating (equilibrium) ice drift in sea ice model [s]
DTICE_EQ == 10800.d0
! Maximum number of iterations to achieve convergence of the nonlinear
! ice dynamics solution
nstrs == 1
! Number of elastic time steps per viscous step in EVP dynamics
nevp == 60
! Density of sea ice [kg/m3]
rhoice == 900.d0
! Ice-water bulk drag coefficient
! (nondimensional).
cdiw == 7.5d-3
! Air-ice bulk drag coefficient
! (nondimensional).
cdai == 3.0d-3
! Slipperiness parameter for ice: 1.0 (free slip) or -1.0 (no slip)
GAMMA2 = -1.0d0
! Density of air [kg/m3]
rho_air = 1.267d0
! Density of dry snow [kg/m3]
rhosnow_dry == 330.d0
! Density of wet snow [kg/m3]
rhosnow_wet == 450.d0
! Ice strength coefficient [N/m2]
pstar == 5.0d+03
! Ice strength exponential weighting coefficient on concentration
! (nondimensional)
astren == 20.d0
! Maximum shear strength [N/m2]
zetamax == 1.0d+14
! Minimum shear strength [N/m2]
zetamin == 0.d0
! Ellipticity squared of yield curve
! (nondimensional)
ellip_sq == 4.d0
! Mohr-Coulomb stress angle [degrees]
alphai == 45.d0
! Tolerance against zero-divide
tol = 1.d-16
! Minimum average ice thickness [m]
min_h == 0.00d0
! Minimum ice concentration
! (nondimensional)
min_a = 0.00d0
! Maximum ice concentration
! (nondimensional)
max_a == 1.0d0
! Ice-water turning angle [degrees]
stressang = 0.d0
! Ice emissivity
! (nondimensional)
ice_emiss = 0.97d0
! Specific heat of air
spec_heat_air = 1004.d0
! Transfer coefficient
! (nondimensional)
trans_coeff = 1.75d-3
! Latent heat of sublimation
sublim_latent_heat = 2.834d6
! Zero degree Celsius in Kelvin
t0deg = 273.15d0