/[MITgcm]/manual/s_phys_pkgs/text/thsice.tex
ViewVC logotype

Annotation of /manual/s_phys_pkgs/text/thsice.tex

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


Revision 1.7 - (hide annotations) (download) (as text)
Thu Apr 6 21:35:26 2006 UTC (19 years, 3 months ago) by edhill
Branch: MAIN
Changes since 1.6: +2 -0 lines
File MIME type: application/x-tex
add footnotesize so the diagnostics lists are readable in the pdf

1 jmc 1.1 % \documentclass[12pt]{article}
2     % \usepackage{amssymb}
3    
4     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5     %% \usepackage{graphics}
6    
7    
8     % \oddsidemargin -4mm \evensidemargin 0mm
9     % \textwidth 165mm
10     % \textheight 230mm
11     % \topmargin -2mm \headsep -2mm
12     % \renewcommand{\baselinestretch}{1.5}
13     % \begin{document}
14    
15    
16     \def\deg{$^o$}
17     %%%--------------------------------------%%%
18 molod 1.5 \subsection{THSICE: The Thermodynamic Sea Ice Package}
19 edhill 1.3 \label{sec:pkg:thsice}
20     \begin{rawhtml}
21     <!-- CMIREDIR:package_thsice: -->
22     \end{rawhtml}
23 jmc 1.1
24     {\bf Important note:}
25     This document has been written by Stephanie Dutkiewicz
26     and describes an earlier implementation of the sea-ice package.
27     This needs to be updated to reflect the recent changes (JMC).
28    
29     \noindent
30     This thermodynamic ice model is based on the 3-layer model by Winton (2000).
31     and the energy-conserving LANL CICE model (Bitz and Lipscomb, 1999).
32     The model considers two equally thick ice layers; the upper layer has
33     a variable specific heat resulting from brine pockets,
34     the lower layer has a fixed heat capacity. A zero heat capacity snow
35     layer lies above the ice. Heat fluxes at the top and bottom
36     surfaces are used to calculate the change in ice and snow layer
37     thickness. Grid cells of the ocean model are
38     either fully covered in ice or are open water. There is
39     a provision to parametrize ice fraction (and leads) in this package.
40     Modifications are discussed in small font following the
41     subroutine descriptions.
42    
43     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
44 molod 1.6 \subsubsection{Key parameters and Routines}
45 jmc 1.1
46     \noindent
47     The ice model is called from {\it thermodynamics.F}, subroutine
48     {\it ice\_forcing.F} is called in place of {\it external\_forcing\_surf.F}.
49    
50     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
51    
52     \vspace{1cm}
53     \noindent
54     {\bf \underline{subroutine ICE\_FORCING}}
55    
56     \noindent
57     In {\it ice\_forcing.F}, we calculate the freezing potential of the
58     ocean model surface layer of water:
59     \[
60     {\bf frzmlt} = (T_f - SST) \frac{c_{sw} \rho_{sw} \Delta z}{\Delta t}
61     \]
62     where $c_{sw}$ is seawater heat capacity,
63     $\rho_{sw}$ is the seawater density, $\Delta z$
64     is the ocean model upper layer thickness and $\Delta t$ is the model (tracer)
65     timestep. The freezing temperature, $T_f=\mu S$ is a function of the
66     salinity.
67    
68    
69     1) Provided there is no ice present and {\bf frzmlt} is less than 0,
70     the surface tendencies of wind, heat and freshwater are calculated
71     as usual (ie. as in {\it external\_forcing\_surf.F}).
72    
73     2) If there is ice present in the grid cell
74     we call the main ice model routine {\it ice\_therm.F} (see below).
75     Output from this routine gives net heat and freshwater flux
76     affecting the top of the ocean.
77    
78     Subroutine {\it ice\_forcing.F} uses these values to find the
79     sea surface tendencies
80     in grid cells. When there is ice present,
81     the surface stress tendencies are
82     set to zero; the ice model is purely thermodynamic and the
83     effect of ice motion on the sea-surface is not examined.
84    
85     Relaxation of surface $T$ and $S$ is only allowed equatorward
86     of {\bf relaxlat} (see {\bf DATA.ICE below}), and no relaxation is
87     allowed under the ice at any latitude.
88    
89     \noindent
90     {\tiny (Note that there is provision for allowing grid cells to have both
91     open water and seaice; if {\bf compact} is between 0 and 1)}
92    
93     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
94     \vspace{1cm}
95     \noindent
96     {\bf {\underline{ subroutine ICE\_FREEZE}}}
97    
98     This routine is called from {\it thermodynamics.F}
99     after the new temperature calculation, {\it calc\_gt.F},
100     but before {\it calc\_gs.F}.
101     In {\it ice\_freeze.F}, any ocean upper layer grid cell
102     with no ice cover, but with temperature below freezing,
103     $T_f=\mu S$ has ice initialized.
104     We calculate {\bf frzmlt} from all the grid cells in
105     the water column that have a temperature less than
106     freezing. In this routine, any water below the surface
107     that is below freezing is set to $T_f$.
108     A call to
109     {\it ice\_start.F} is made if {\bf frzmlt} $>0$,
110     and salinity tendancy is updated for brine release.
111    
112     \noindent
113     {\tiny (There is a provision for fractional ice:
114     In the case where the grid cell has less ice coverage than
115     {\bf icemaskmax} we allow {\it ice\_start.F} to be called).}
116    
117     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
118    
119     \vspace{1cm}
120     \noindent
121     {\bf {\underline{ subroutine ICE\_START}}}
122    
123     \noindent
124     The energy available from freezing
125     the sea surface is brought into this routine as {\bf esurp}.
126     The enthalpy of the 2 layers of any new ice is calculated as:
127     \begin{eqnarray}
128     q_1 & = & -c_{i}*T_f + L_i \nonumber \\
129     q_2 & = & -c_{f}T_{mlt}+ c_{i}(T_{mlt}-T{f}) + L_i(1-\frac{T_{mlt}}{T_f}
130     \nonumber \\
131     \end{eqnarray}
132     where $c_f$ is specific heat of liquid fresh water, $c_i$ is the
133     specific heat of fresh ice, $L_i$ is latent heat of freezing,
134     $\rho_i$ is density of ice and
135     $T_{mlt}$ is melting temperature of ice with salinity of 1.
136     The height of a new layer of ice is
137     \[
138     h_{i new} = \frac{{\bf esurp} \Delta t}{qi_{0av}}
139     \]
140     where $qi_{0av}=-\frac{\rho_i}{2} (q_1+q_2)$.
141    
142     The surface skin temperature $T_s$ and ice temperatures
143     $T_1$, $T_2$ and the sea surface temperature are set at $T_f$.
144    
145     \noindent
146     {\tiny ( There is provision for fractional ice:
147     new ice is formed over open water; the first freezing in the cell
148     must have a height of {\bf himin0}; this determines the ice
149     fraction {\bf compact}. If there is already ice in the grid cell,
150     the new ice must have the same height and the new ice fraction
151     is
152     \[
153     i_f=(1-\hat{i_f}) \frac{h_{i new}}{h_i}
154     \]
155     where $\hat{i_f}$ is ice fraction from previous timestep
156     and $h_i$ is current ice height. Snow is redistributed
157     over the new ice fraction. The ice fraction is
158     not allowed to become larger than {\bf iceMaskmax} and
159     if the ice height is above {\bf hihig} then freezing energy
160     comes from the full grid cell, ice growth does not occur
161     under orginal ice due to freezing water.
162     }
163     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
164    
165     \vspace{1cm}
166     \noindent
167     {\bf {\underline{subroutine ICE\_THERM}}}
168    
169     \noindent
170     The main subroutine of this package is {\it ice\_therm.F} where the
171     ice temperatures are calculated and the changes in ice and snow
172     thicknesses are determined. Output provides the net heat and fresh
173     water fluxes that force the top layer of the ocean model.
174    
175     If the current ice height is less than {\bf himin} then
176     the ice layer is set to zero and the ocean model upper layer temperature
177     is allowed to drop lower than its freezing temperature; and atmospheric
178     fluxes are allowed to effect the grid cell.
179     If the ice height is greater than {\bf himin} we proceed with
180     the ice model calculation.
181    
182     We follow the procedure
183     of Winton (1999) -- see equations 3 to 21 -- to calculate
184     the surface and internal ice temperatures.
185     The surface temperature is found from the balance of the
186     flux at the surface $F_s$, the shortwave heat flux absorbed by the ice,
187     {\bf fswint}, and
188     the upward conduction of heat through the snow and/or ice, $F_u$.
189     We linearize $F_s$ about the surface temperature, $\hat{T_s}$,
190     at the previous timestep (where \mbox{}$\hat{ }$ indicates the value at
191     the previous timestep):
192     \[
193     F_s (T_s) = F_s(\hat{T_s}) + \frac{\partial F_s(\hat{T_s)}}{\partial T_s}
194     (T_s-\hat{T_s})
195     \]
196     where,
197     \[
198     F_s = F_{sensible}+F_{latent}+F_{longwave}^{down}+F_{longwave}^{up}+ (1-
199     \alpha) F_{shortwave}
200     \]
201     and
202     \[
203     \frac{d F_s}{dT} = \frac{d F_{sensible}}{dT} + \frac{d F_{latent}}{dT}
204     +\frac{d F_{longwave}^{up}}{dT}.
205     \]
206     $F_s$ and $\frac{d F_s}{dT}$ are currently calculated from the {\bf BULKF}
207     package described separately, but could also be provided by an atmospheric
208     model. The surface albedo is calculated from the ice height and/or
209     surface temperature (see below, {\it srf\_albedo.F}) and the
210     shortwave flux absorbed in the ice is
211     \[
212     {\bf fswint} = (1-e^{\kappa_i h_i})(1-\alpha) F_{shortwave}
213     \]
214     where $\kappa_i$ is bulk extinction coefficient.
215    
216     The conductive flux to the surface is
217     \[
218     F_u=K_{1/2}(T_1-T_s)
219     \]
220     where $K_{1/2}$ is the effective conductive coupling of the snow-ice
221     layer between the surface and the mid-point of the upper layer of ice
222     $
223     K_{1/2}=\frac{4 K_i K_s}{K_s h_i + 4 K_i h_s}
224     $.
225     $K_i$ and $K_s$ are constant thermal conductivities of seaice and snow.
226    
227     From the above equations we can develop a system of equations to
228     find the skin surface temperature, $T_s$ and the two ice layer
229     temperatures (see Winton, 1999, for details). We solve these
230     equations iteratively until the change in $T_s$ is small.
231     When the surface temperature is greater then
232     the melting temperature of the surface, the temperatures are
233     recalculated setting $T_s$ to 0. The enthalpy
234     of the ice layers are calculated in order to keep track of the energy in the
235     ice model. Enthalpy is defined, here, as the energy required to melt a
236     unit mass of seaice with temperature $T$.
237     For the upper layer (1) with brine pockets and
238     the lower fresh layer (2):
239     \begin{eqnarray}
240     q_1 & = & - c_f T_f + c_i (T_f-T)+ L_{i}(1-\frac{T_f}{T})
241     \nonumber \\
242     q_2 & = & -c_i T+L_i \nonumber
243     \end{eqnarray}
244     where $c_f$ is specific heat of liquid fresh water, $c_i$ is the
245     specific heat of fresh ice, and $L_i$ is latent heat of melting fresh ice.
246    
247    
248    
249     From the new ice temperatures, we can calculate
250     the energy flux at the surface available for melting (if $T_s$=0)
251     and the energy at the ocean-ice interface for either melting or freezing.
252     \begin{eqnarray}
253     E_{top} & = & (F_s- K_{1/2}(T_s-T_1) ) \Delta t
254     \nonumber \\
255     E_{bot} &= & (\frac{4K_i(T_2-T_f)}{h_i}-F_b) \Delta t
256     \nonumber
257     \end{eqnarray}
258     where $F_b$ is the heat flux at the ice bottom due to the sea surface
259     temperature variations from freezing.
260     If $T_{sst}$ is above freezing, $F_b=c_{sw} \rho_{sw}
261     \gamma (T_{sst}-T_f)u^{*}$, $\gamma$ is the heat transfer coefficient
262     and $u^{*}=QQ$ is frictional velocity between ice
263     and water. If $T_{sst}$ is below freezing,
264     $F_b=(T_f - T_{sst})c_f \rho_f \Delta z /\Delta t$ and set $T_{sst}$
265     to $T_f$. We also
266     include the energy from lower layers that drop below freezing,
267     and set those layers to $T_f$.
268    
269     If $E_{top}>0$ we melt snow from the surface, if all the snow is melted
270     and there is energy left, we melt the ice. If the ice is all gone
271     and there is still energy left, we apply the left over energy to
272     heating the ocean model upper layer (See Winton, 1999, equations 27-29).
273     Similarly if $E_{bot}>0$ we melt ice from the bottom. If all the ice
274     is melted, the snow is melted (with energy from the ocean model upper layer
275     if necessary). If $E_{bot}<0$ we grow ice at the bottom
276     \[
277     \Delta h_i = \frac{-E_{bot}}{(q_{bot} \rho_i)}
278     \]
279     where $q_{bot}=-c_{i} T_f + L_i$ is the enthalpy of the new ice,
280     The enthalpy of the second ice layer, $q_2$ needs to be modified:
281     \[
282     q_2 = \frac{ \hat{h_i}/2 \hat{q_2} + \Delta h_i q_{bot} }
283     {\hat{h_i}/{2}+\Delta h_i}
284     \]
285    
286     If there is a ice layer and the overlying air temperature is
287     below 0$^o$C then any precipitation, $P$ joins the snow layer:
288     \[
289     \Delta h_s = -P \frac{\rho_f}{\rho_s} \Delta t,
290     \]
291     $\rho_f$ and $\rho_s$ are the fresh water and snow densities.
292     Any evaporation, similarly, removes snow or ice from the surface.
293     We also calculate the snow age here, in case it is needed for
294     the surface albedo calculation (see {\it srf\_albedo.F} below).
295    
296     For practical reasons we limit the ice growth to {\bf hilim}
297     and snow is limited to {\bf hslim}. We converts any
298     ice and/or snow above these limits back to water, maintaining the salt
299     balance. Note however, that heat is not conserved in this
300     conversion; sea surface temperatures below the ice are not
301     recalculated.
302    
303     If the snow/ice interface is below the waterline, snow is converted
304     to ice (see Winton, 1999, equations 35 and 36). The subroutine
305     {\it new\_layers\_winton.F}, described below, repartitions the ice into
306     equal thickness layers while conserving energy.
307    
308     The subroutine {\it ice\_therm.F} now calculates the heat and fresh
309     water fluxes affecting the ocean model surface layer. The heat flux:
310     \[
311     q_{net}= {\bf fswocn} - F_{b} - \frac{{\bf esurp}}{\Delta t}
312     \]
313     is composed of the shortwave flux that has passed through the
314     ice layer and is absorbed by the water, {\bf fswocn}$=QQ$,
315     the ocean flux to the ice $F_b$,
316     and the surplus energy left over from the melting, {\bf esurp}.
317     The fresh water flux is determined from the amount of
318     fresh water and salt in the ice/snow system before and after the
319     timestep.
320    
321     \noindent
322     {\tiny (There is a provision for fractional ice:
323     If ice height is above {\bf hihig} then all energy from freezing at
324     sea surface is used only in the open water aparts of the cell (ie.
325     $F_b$ will only have the conduction term).
326     The melt energy is partitioned by {\bf frac\_energy} between melting
327     ice height and ice extent. However, once ice height drops below
328     {\bf himon0} then all energy melts ice extent.}
329    
330     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
331     \vspace{1cm}
332    
333     \noindent
334     {\bf {\underline{subroutine SFC\_ALBEDO} } }
335    
336     \noindent
337     The routine {\it ice\_therm.F} calls this routine to determine
338     the surface albedo. There are two calculations provided here:
339    
340     \noindent
341     {\bf 1)} from LANL CICE model
342     \[ \alpha = f_s \alpha_s + (1-f_s) (\alpha_{i_{min}}
343     + (\alpha_{i_{max}}- \alpha_{i_{min}}) (1-e^{-h_i/h_{\alpha}}))
344     \]
345     where $f_s$ is 1 if there is snow, 0 if not; the snow albedo,
346     $\alpha_s$ has two values
347     depending on whether $T_s<0$ or not; $\alpha_{i_{min}}$ and
348     $\alpha_{i_{max}}$ are ice albedos for thin melting ice, and
349     thick bare ice respectively, and $h_{\alpha}$ is a scale
350     height.
351    
352     \noindent
353     {\bf 2)} From GISS model (Hansen et al 1983)
354     \[
355     \alpha = \alpha_i e^{-h_s/h_a} + \alpha_s (1-e^{-h_s/h_a})
356     \]
357     where $\alpha_i$ is a constant albedo for bare ice, $h_a$
358     is a scale height and $\alpha_s$ is a variable snow albedo.
359     \[
360     \alpha_s = \alpha_1 + \alpha_2 e^{-\lambda_a a_s}
361     \]
362     where $\alpha_1$ is a constant, $\alpha_2$ depends on $T_s$,
363     $a_s$ is the snow age, and $\lambda_a$ is a scale frequency.
364     The snow age is calculated in {\it ice\_therm.F} and is given
365     in equation 41 in Hansen et al (1983).
366    
367     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
368    
369     \vspace{1cm}
370    
371     \noindent
372     {\bf {\underline{subroutine NEW\_LAYERS\_WINTON}}}
373    
374     \noindent
375     The subroutine
376     {\it new\_layers\_winton.F} repartitions the ice into
377     equal thickness layers while conserving energy. We pass
378     to this subroutine, the ice layer enthalpies after
379     melting/growth and the new height of the ice layers.
380     The ending layer height should be half the sum of the
381     new ice heights from {\it ice\_therm.F}. The enthalpies
382     of the ice layers are adjusted accordingly to maintain
383     total energy in the ice model. If layer 2 height is
384     greater than layer 1 height then layer 2 gives ice to
385     layer 1 and:
386     \[
387     q_1=f_1 \hat{q_1} + (1-f1) \hat{q_2}
388     \]
389     where $f_1$ is the fraction of the new to old upper layer heights.
390     $T_1$ will therefore also have changed.
391     Similarly for when ice layer height 2 is less than
392     layer 1 height, except here we need to to be careful
393     that the new $T_2$ does not fall below the melting temperature.
394    
395     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
396    
397     \vspace{1cm}
398    
399     \noindent
400     {\bf {\underline{Initializing subroutines}}}
401    
402     \noindent
403     {\it ice\_init.F}:
404     Set ice variables to zero, or reads in pickup information
405     from {\bf pickup.ic} (which was written out in {\it checkpoint.F})
406    
407     \noindent
408     {\it ice\_readparms.F}:
409     Reads {\bf data.ice}
410    
411     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
412    
413     \vspace{1cm}
414    
415     \noindent
416     {\bf {\underline{Diagnostic subroutines}}}
417    
418     \noindent
419     {\it ice\_ave.F}:
420     Keeps track of means of the ice variables
421    
422     \noindent
423     {\it ice\_diags.F}:
424     Finds averages and writes out diagnostics
425    
426     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
427     \vspace{1cm}
428    
429     \noindent
430     {\bf {\underline{Common Blocks}}}
431    
432     \noindent
433     {\it ICE.h}: Ice Varibles, also
434     {\bf relaxlat} and {\bf startIceModel}
435    
436     \noindent
437     {\it ICE\_DIAGS.h}: matrices for diagnostics: averages of fields
438     from {\it ice\_diags.F}
439    
440     \noindent
441     {\it BULKF\_ICE\_CONSTANTS.h} (in {\bf BULKF} package):
442     all the parameters need by the ice model
443    
444     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
445     \vspace{1cm}
446    
447     \noindent
448     {\bf {\underline{Input file DATA.ICE}}}
449    
450     \noindent
451     Here we need to set {\bf StartIceModel}: which is 1 if the
452     model starts from no ice; and 0 if there is a pickup file
453     with the ice matrices ({\bf pickup.ic}) which is read
454     in {\it ice\_init.F} and written out in {\it checkpoint.F}.
455     The parameter {\bf relaxlat} defines the latitude poleward
456     of which there is no relaxing of surface $T$ or $S$ to
457     observations. This avoids the relaxation forcing the ice
458     model at these high latitudes.
459    
460     \noindent
461     ({\tiny Note: {\bf hicemin} is set to 0 here. If the
462     provision for allowing grid cells to have both
463     open water and seaice is ever implemented, this would
464     be greater than 0})
465    
466     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
467     \vspace{1cm}
468    
469 molod 1.6 \subsubsection{Important Notes}
470 jmc 1.1
471     \noindent
472     {\bf 1)} heat fluxes have different signs in the ocean and ice
473     models.
474    
475     \noindent
476     {\bf 2)} {\bf StartIceModel} must be changed in {\bf data.ice}:
477     1 (if starting from no ice), 0 (if using pickup.ic file).
478    
479     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
480    
481 molod 1.6 \subsubsection{THSICE Diagnostics}
482     \label{sec:pkg:thsice:diagnostics}
483    
484 edhill 1.7 {\footnotesize
485 molod 1.6 \begin{verbatim}
486    
487     ------------------------------------------------------------------------
488     <-Name->|Levs|<-parsing code->|<-- Units -->|<- Tile (max=80c)
489     ------------------------------------------------------------------------
490     SI_Fract| 1 |SM P M1 |0-1 |Sea-Ice fraction [0-1]
491     SI_Thick| 1 |SM PC197M1 |m |Sea-Ice thickness (area weighted average)
492     SI_SnowH| 1 |SM PC197M1 |m |Snow thickness over Sea-Ice (area weighted)
493     SI_Tsrf | 1 |SM C197M1 |degC |Surface Temperature over Sea-Ice (area weighted)
494     SI_Tice1| 1 |SM C197M1 |degC |Sea-Ice Temperature, 1srt layer (area weighted)
495     SI_Tice2| 1 |SM C197M1 |degC |Sea-Ice Temperature, 2nd layer (area weighted)
496     SI_Qice1| 1 |SM C198M1 |J/kg |Sea-Ice enthalpy, 1srt layer (mass weighted)
497     SI_Qice2| 1 |SM C198M1 |J/kg |Sea-Ice enthalpy, 2nd layer (mass weighted)
498     SIalbedo| 1 |SM PC197M1 |0-1 |Sea-Ice Albedo [0-1] (area weighted average)
499     SIsnwAge| 1 |SM P M1 |s |snow age over Sea-Ice
500     SIsnwPrc| 1 |SM C197M1 |kg/m^2/s |snow precip. (+=dw) over Sea-Ice (area weighted)
501     SIflxAtm| 1 |SM M1 |W/m^2 |net heat flux from the Atmosphere (+=dw)
502     SIfrwAtm| 1 |SM M1 |kg/m^2/s |fresh-water flux to the Atmosphere (+=up)
503     SIflx2oc| 1 |SM M1 |W/m^2 |heat flux out of the ocean (+=up)
504     SIfrw2oc| 1 |SM M1 |m/s |fresh-water flux out of the ocean (+=up)
505     SIsaltFx| 1 |SM M1 |psu.kg/m^2 |salt flux out of the ocean (+=up)
506     SItOcMxL| 1 |SM M1 |degC |ocean mixed layer temperature
507     SIsOcMxL| 1 |SM P M1 |psu |ocean mixed layer salinity
508     \end{verbatim}
509 edhill 1.7 }
510 molod 1.6
511     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
512 jmc 1.1 \vspace{1cm}
513    
514     \noindent
515     {\bf {\underline{References}}}
516    
517     \noindent
518     Bitz, C.M. and W.H. Lipscombe, 1999: An Energy-Conserving
519     Thermodynamic Model of Sea Ice.
520     {\it Journal of Geophysical Research}, 104, 15,669 -- 15,677.
521    
522     \vspace{.2cm}
523    
524     \noindent
525     Hansen, J., G. Russell, D. Rind, P. Stone, A. Lacis, S. Lebedeff,
526     R. Ruedy and L.Travis, 1983: Efficient Three-Dimensional
527     Global Models for Climate Studies: Models I and II.
528     {\it Monthly Weather Review}, 111, 609 -- 662.
529    
530     \vspace{.2cm}
531    
532     \noindent
533     Hunke, E.C and W.H. Lipscomb, circa 2001: CICE: the Los Alamos
534     Sea Ice Model Documentation and Software User's Manual.
535     LACC-98-16v.2.\\
536     (note: this documentation is no longer available as CICE has progressed
537     to a very different version 3)
538    
539    
540     \vspace{.2cm}
541    
542     \noindent
543     Winton, M, 2000: A reformulated Three-layer Sea Ice Model.
544     {\it Journal of Atmospheric and Ocean Technology}, 17, 525 -- 531.
545    
546    
547    
548     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
549     % \end{document}

  ViewVC Help
Powered by ViewVC 1.1.22