/[MITgcm]/MITgcm_contrib/articles/ceaice_split_version/ceaice_part2/ceaice_adjoint.tex
ViewVC logotype

Annotation of /MITgcm_contrib/articles/ceaice_split_version/ceaice_part2/ceaice_adjoint.tex

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


Revision 1.45 - (hide annotations) (download) (as text)
Fri Jan 15 00:17:32 2010 UTC (15 years, 6 months ago) by heimbach
Branch: MAIN
Changes since 1.44: +20 -19 lines
File MIME type: application/x-tex
Corrections to Abstract, Sections 1, 2 (and references)

1 heimbach 1.15 %---------------------------------------------------------------------------
2 dimitri 1.17 \section{MITgcm adjoint code generation}
3 heimbach 1.1 \label{sec:adjoint}
4 heimbach 1.15 %---------------------------------------------------------------------------
5 heimbach 1.1
6 heimbach 1.3 There is now a growing body of literature on adjoint applications
7 heimbach 1.45 in oceanography and adjoint code generation via AD.
8 heimbach 1.3 We therefore limit the description of the method to a brief summary.
9 heimbach 1.38 For discrete problems as considered here,
10     the adjoint model operator (ADM) is the transpose of the
11 heimbach 1.11 Jacobian or tangent
12 heimbach 1.1 linear model operator (TLM) of the full (in general nonlinear) forward
13 heimbach 1.45 model (NLM), in this case, the MITgcm coupled ocean and sea ice model.
14 heimbach 1.37 Consider a scalar-valued model diagnostics, referred to as
15     objective function,
16 heimbach 1.45 and an $m$-dimensional control space
17     (referred to as space of independent variables)
18 heimbach 1.37 whose elements we may wish to perturb to assess their impact on the
19     objective function.
20     In the context of data assimilation the objective function may be the
21     least-square model vs. data misfit, whereas here, we may choose almost
22     any function that is (at least piece-wise) differentiable with respect to
23     the control variables. Here, we shall be focusing on the
24 heimbach 1.40 solid freshwater export through Lancaster Sound.
25    
26     \begin{table}[t!]
27     \caption{List of control variables used.
28     The controls are either part of the oceanic (O) or sea-ice (I) state,
29     or time-varying elements of the atmospheric (A) boundary conditions.}
30     \label{tab:controlvars}
31     \begin{tabular}{cccc}
32     \hline
33     component & variable & dim. & time \\
34     \hline \hline
35     O & temperature & 3-D & init. \\
36     O & salinity & 3-D & init. \\
37     O & vertical diffusivity & 3-D & const. \\
38     I & concentration & 2-D & init. \\
39     I & thickness & 2-D & init. \\
40     A & air temperature & 2-D & 2-day \\
41     A & specific humidity & 2-D & 2-day \\
42     A & shortwave radiation & 2-D & 2-day \\
43     A & precipitation & 2-D & 2-day \\\
44     A & zonal windspeed & 2-D & 2-day \\
45     A & merid. windspeed & 2-D & 2-day \\
46     \hline
47     \end{tabular}
48     \end{table}
49    
50 heimbach 1.45 Two- and three-dimensional control variables used in the present
51     study are listed in Table \ref{tab:controlvars}.
52     They consist of two- or
53 heimbach 1.1 three-dimensional fields of initial conditions of the ocean or sea-ice
54 heimbach 1.40 state, ocean vertical mixing coefficients, and time-varying
55     surface boundary conditions (surface air temperature,
56     specific humidity, shortwave radiation, precipitation,
57     zonal and meridional wind speed).
58 heimbach 1.45 The TLM computes the objective functions's directional derivatives
59 heimbach 1.37 for a given perturbation direction.
60     In contrast, the ADM computes the the full gradient
61     of the objective function with respect to all control variables.
62     When combined, the control
63     variables may span a potentially high-dimensional, e.g., O(10$^8$),
64 heimbach 1.6 control space. At this problem dimension, perturbing
65 dimitri 1.17 individual parameters to assess model sensitivities is
66 heimbach 1.1 prohibitive. By contrast, transient sensitivities of the objective
67     function to any element of the control and model state space can be
68     computed very efficiently in one single adjoint model integration,
69     provided an adjoint model is available.
70    
71 heimbach 1.38 Conventionally, adjoint models are developed ``by hand'' through
72     implementing code which solves the adjoint equations
73     \citep[e.g.][]{marc:95,wuns:96} of the given forward equations.
74 mlosch 1.9 The burden of developing ``by hand''
75 heimbach 1.3 an adjoint model in general matches that of
76     the forward model development. The substantial extra investment
77 dimitri 1.17 often prevents serious attempts at making available adjoint
78 heimbach 1.38 components of sophisticated models. Furthermore, the work of keeping
79     the adjoint model up-to-date with its forward parent model matches the
80     work of forward model development.
81     The alternative route of rigorous application of AD tools has proven
82 heimbach 1.3 very successful in the context of MITgcm ocean modeling applications.
83 heimbach 1.38
84     Certain limitations regarding coding standards apply.
85     Although they vary from tool to tool, they are similar across various
86     tools and are related to the ability to efficiently reverse the flow
87     through the model.
88     Work is thus required initially to make the model amenable to
89     efficient adjoint code generation for a given AD tool.
90     This part of the adjoint code generation is not automatic
91 heimbach 1.40 (we sometimes refer to it as semi-automatic)
92 heimbach 1.38 and can be substantial for legacy code, in particular if the code
93     is badly modularized and contains many irreducible control flows
94     (e.g. GO TO statements, which are considered bad coding practice anyways).
95    
96     It is important to note, nevertheless, that once the tailoring of the
97     model code to the AD code is in place, any further forward model
98     development can be easily incorporated in the adjoint model via AD.
99     Furthermore, the notion of \textit{the adjoint} is misleading, since the
100     structure of the adjoint depends critically on the control problem posed
101     (a passive tracer sensitivity yields a very different Jacobian
102     to an active tracer sensitivity). A clear example of the dependence
103     of the structure of the adjoint model on the control problem
104     is the extension of an adjoint model which uses bottom topography
105     as a control variable \citep{losc-heim:07}.
106     The AD approach enables a much more thorough and smoother
107     adjoint model extension than would be possible via hand-coding.
108    
109 heimbach 1.3 The adjoint model of the MITgcm has become an invaluable
110 dimitri 1.17 tool for sensitivity analysis as well as for state estimation \citep[for a
111 heimbach 1.3 recent overview and summary, see][]{heim:08}.
112 dimitri 1.17 AD also enables a large variety of configurations
113     and studies to be conducted with adjoint methods without the onerous task of
114     modifying the adjoint of each new configuration by hand.
115 heimbach 1.45 \cite{gier-kami:98} discuss in detail the advantages of AD.
116 heimbach 1.3
117     The AD route was also taken in developing and adapting the sea-ice
118 dimitri 1.17 component of the MITgcm, so that tangent linear and adjoint components can be
119     obtained and kept up to date without excessive effort.
120     As for the TLM and ADM components of the MITgcm ocean model, we rely on the
121 heimbach 1.45 AD tool ``Transformation of Algorithms in
122 heimbach 1.1 Fortran'' (TAF) developed by Fastopt \citep{gier-kami:98} to generate
123 dimitri 1.17 TLM and ADM code of the MITgcm sea ice model \citep[for details
124     see][]{maro-etal:99,heim-etal:05}.
125     Note that for the ocean component, we are now also able to generate
126 heimbach 1.7 efficient derivative code using the new open-source tool OpenAD
127 heimbach 1.15 \citep{utke-etal:08}.
128 heimbach 1.7 Appendix \ref{app:adissues} provides details of
129 dimitri 1.17 adjoint code generation for the coupled ocean and sea ice MITgcm
130     configuration.
131 heimbach 1.1
132 dimitri 1.17 Since conducting this study, further changes to the
133     thermodynamic formulation have been implemented, which improve certain
134     aspects of forward and adjoint model behavior.
135 heimbach 1.45 These changes are discussed in detail in \cite{fent:10} along with application
136 dimitri 1.17 of the coupled ocean and sea ice MITgcm adjoint to estimating the state of the
137 dimitri 1.33 Labrador Sea during 1996--1997.
138 dimitri 1.17
139 heimbach 1.37 To conclude this section, we emphasize the coupled nature of the MITgcm
140     ocean and sea ice adjoint.
141 dimitri 1.24 \reffigure{couplingschematic}
142 heimbach 1.37 illustrates the relationship between control variables and the
143 heimbach 1.41 objective function $J$ when using the tangent linear model
144     (TLM, left diagram), or the adjoint model (ADM, right diagram).
145 mlosch 1.43 %ML The left diagram depicts how
146     %ML each perturbation of an element of the control space
147     %ML which consists of atmospheric perturbations
148     %ML (surface air temperature $\delta T_a$, precipitation $\delta p$),
149     %ML sea-ice perturbations
150     %ML (e.g. ice concentration $\delta c$, ice thickness $\delta h$),
151     %ML and oceanic perturbations
152     %ML (e.g. potential temperature $\delta \Theta$, salinity $\delta S$)
153     %ML leads to a perturbed objective function $\delta J$).
154     % easier to read?
155     The control space consists of atmospheric perturbations
156 heimbach 1.40 (surface air temperature $\delta T_a$, precipitation $\delta p$),
157 heimbach 1.41 sea-ice perturbations
158 mlosch 1.43 (e.g. ice concentration $\delta c$, ice thickness $\delta h$),
159 heimbach 1.41 and oceanic perturbations
160     (e.g. potential temperature $\delta \Theta$, salinity $\delta S$)
161 mlosch 1.43 The left diagram depicts how
162     each perturbation of an element of the control space
163 heimbach 1.45 leads to a perturbed objective function $\delta J$
164     via the TLM.
165 mlosch 1.43 %ML end
166 heimbach 1.37 In contrast, the right diagram shows the reverse propagation of
167 heimbach 1.41 \textit{adjoint variables} or
168 mlosch 1.43 \textit{sensitivities} labeled with an asterisk ($^{\ast}$).
169     The notation reflects the fact that adjoint variables are formally
170 heimbach 1.41 Lagrange multipliers or elements of the model's
171     co-tangent space (as opposed to perturbations which are formally
172     elements of the model's tangent space).
173     For example, $\delta^{\ast} c$ refers to the gradient
174     $ \partial J / \partial c$.
175 heimbach 1.45 The aim of the diagram is to show (in a very simplified way) two things:
176 heimbach 1.41 (1) It depicts how sensitivities of a
177 heimbach 1.37 sea ice export objective function (to be defined below)
178 heimbach 1.45 which is written as a function of the sea-ice state,
179     to changes, e.g., in ice concentration, $ \partial J / \partial c$,
180     is affected by changes, e.g., in ocean temperature
181     via the chain rule of differentiation, i.e.,
182 heimbach 1.41 $ \frac{\partial J}{\partial \theta} \, = \,
183     \frac{\partial J}{\partial c} \cdot
184     \frac{\partial c}{\partial \theta} $.
185     The adjoint model thus maps the adjoint objective function state
186     to the adjoint sea-ice state, and from there to the coupled
187     adjoint oceanic and surface atmospheric state.
188     (2) It can be seen that the ADM maps from a
189     1-dimensional state ($\delta^{\ast} J$) to a multi-dimensional state
190     ($\delta^{\ast} c, \delta^{\ast} h, \delta^{\ast} T_a,
191     \delta^{\ast} p, \delta^{\ast} \Theta, \delta^{\ast} S$),
192     whereas the TLM maps from a multi-dimensional state
193     ($\delta c, \delta h, \delta T_a,
194     \delta p, \delta \Theta, \delta S$) to a 1-dimensional state
195 mlosch 1.43 ($\delta J$). This is at the heart of the reason, why
196 heimbach 1.45 only one adjoint integration is needed to assemble the full
197     objective function's gradient,
198 heimbach 1.41 but as many tangent linear integrations as dimensions of the control space
199     are needed to assemble the same gradient.
200     Rigorous derivations can be found, e.g., in Chapter 5 of the MITgcm
201     documentation \citep{adcr-etal:02}, \cite{wuns:06}, or
202     \cite{gier-kami:98}.
203 heimbach 1.1
204 dimitri 1.33 \begin{figure}[t]
205     \newcommand{\textinfigure}[1]{{\normalsize\textbf{\textsf{#1}}}}
206     \newcommand{\mathinfigure}[1]{\normalsize\ensuremath{{#1}}}
207     \psfrag{delS}{\mathinfigure{\delta S}}
208     \psfrag{delT}{\mathinfigure{\delta \Theta}}
209     \psfrag{delc}{\mathinfigure{\delta c}}
210     \psfrag{delh}{\mathinfigure{\delta h}}
211     \psfrag{delAT}{\mathinfigure{\delta T_a}}
212     \psfrag{delP}{\mathinfigure{\delta p}}
213     \psfrag{delJ}{\mathinfigure{\delta J}}
214     %
215     \psfrag{addS}{\mathinfigure{\delta^{\ast} S}}
216     \psfrag{addT}{\mathinfigure{\delta^{\ast} \Theta}}
217     \psfrag{addc}{\mathinfigure{\delta^{\ast} c}}
218     \psfrag{addh}{\mathinfigure{\delta^{\ast} h}}
219     \psfrag{addAT}{\mathinfigure{\delta^{\ast} T_a}}
220     \psfrag{addP}{\mathinfigure{\delta^{\ast} p}}
221     \psfrag{addJ}{\mathinfigure{\delta^{\ast} J}}
222     \centerline{
223 heimbach 1.37 \includegraphics*[width=.95\textwidth]{\fpath/coupling_schematic}
224 dimitri 1.33 }
225     \caption{
226 heimbach 1.41 This schematic diagram illustrates how,
227     the tangent linear model (TLM, left panel) maps perturbations in
228     the oceanic, atmospheric, or sea-ice state into a perturbation
229     of the objective function $\delta J$,
230     whereas the adjoint model (ADM, right panel) maps the adjoint
231     objective function $\delta^{\ast} J$
232     into the adjoint sea-ice state
233     which is a sensitivity or gradient, e.g.,
234     $\delta^{\ast} c \, = \, \partial J / \partial c$,
235     and into the coupled ocean and atmospheric adjoint states.
236     The TLM thus computes how a perturbation in \textit{one} input
237     affects \textit{all} outputs (but considered here as output is just $J$),
238     whereas the adjoint model computes how \textit{one} output
239     (again, just $J$) is affected by \textit{all} inputs.
240 dimitri 1.33 \label{fig:couplingschematic}}
241     \end{figure}
242 heimbach 1.1
243 heimbach 1.15 %---------------------------------------------------------------------------
244 heimbach 1.6 \section{A case study: Sensitivities of sea-ice export through
245 heimbach 1.21 Lancaster Sound}
246 heimbach 1.15 %---------------------------------------------------------------------------
247 heimbach 1.1
248     We demonstrate the power of the adjoint method in the context of
249 heimbach 1.42 investigating sea-ice export sensitivities through Lancaster Sound
250     (in the following LS).
251 dimitri 1.18 The rationale for this choice is to complement the analysis of sea-ice
252 heimbach 1.39 dynamics in the presence of narrow straits of Part 1.
253 heimbach 1.42 LS is one of
254 dimitri 1.18 the main paths of sea ice export through the Canadian Arctic
255 heimbach 1.36 Archipelago (CAA)
256     \citep{mell:02,prin-hami:05,mich-etal:06,muen-etal:06,kwok:06}.
257     \reffigure{sverdrupbasin} %taken from \cite{mell:02}
258 dimitri 1.18 reflects the intricate local geography of CAA
259 heimbach 1.8 straits, sounds, and islands.
260     Export sensitivities reflect dominant pathways
261 dimitri 1.18 through the CAA, as resolved by the model. Sensitivity maps provide a very
262     detailed view of
263 mlosch 1.12 %shed a very detailed light on
264     various quantities affecting the sea-ice export
265 heimbach 1.14 (and thus the underlying propagation pathways).
266 dimitri 1.18 A caveat of the present study is the limited resolution, which
267 heimbach 1.11 is not adequate to realistically simulate the CAA.
268     For example, while the dominant
269 heimbach 1.42 circulation through LS is toward the East, there is a
270 heimbach 1.36 small Westward flow to the North, hugging the coast of Devon Island,
271     which is not resolved in our simulation.
272 heimbach 1.11 Nevertheless, the focus here is on elucidating model sensitivities in a
273     general way. For any given simulation, whether deemed
274 dimitri 1.18 ``realistic'' or not, the adjoint provides exact model sensitivities, which
275     help test whether hypothesized processes are actually
276 heimbach 1.11 borne out by the model dynamics.
277 heimbach 1.40 Note that the resolution used in this study is at least as good or better
278     than the resolution used for IPCC-type calculations.
279 heimbach 1.1
280 dimitri 1.33 \begin{figure}[t]
281     \centering
282 mlosch 1.44 \includegraphics*[width=0.95\textwidth]{\fpath/map_part2_2}
283 dimitri 1.33 % \includegraphics*[width=0.9\textwidth]{\fpath/map_sverdrup_basin_melling_2002}
284     \caption{Map of the Canadian Arctic Archipelago with model
285     coastlines and grid (filled grey boxes are land). The black
286     contours are the true coastlines as taken from the GSHHS data base
287 heimbach 1.39 \citep{wessel96}. The gate at 82$^{\circ}W$
288     across which the solid freshwater export is computed
289     is indicated as black line.
290 dimitri 1.33 \label{fig:sverdrupbasin}}
291     \end{figure}
292 heimbach 1.15
293     %---------------------------------------------------------------------------
294 heimbach 1.6 \subsection{The model configuration}
295 heimbach 1.15 %---------------------------------------------------------------------------
296 heimbach 1.6
297 heimbach 1.14 The model domain is similar to the one described in Part 1.
298 heimbach 1.40 It is carved out from the Arctic face of a global, eddy-admitting,
299 dimitri 1.19 cubed-sphere simulation \citep{menemenlis05}
300     but with 36-km instead of 18-km grid cell width,
301 heimbach 1.40 i.e., coarsened horizontal resolution compared to
302     the configuration described in Part 1.
303 mlosch 1.12 %, now amounting to roughly 36 km..
304 heimbach 1.40 The vertical discretization is the same as in Part 1, i.e. the model has
305     50 vertical depth levels, which are unevenly spaced, ranging from 10 m
306     layer thicknesses in the top 100 m to a maximum of 456 m layer thickness
307     at depth.
308 dimitri 1.19 The adjoint model for this configuration runs efficiently on 80 processors,
309     inferred from benchmarks on both an SGI Altix and on an IBM SP5 at NASA/ARC
310     and at NCAR/CSL, respectively.
311     Following a 4-year spinup (1985 to 1988), the model is integrated for an
312     additional four
313     years and nine months between January 1, 1989 and September 30, 1993.
314     It is forced at the surface using realistic 6-hourly NCEP/NCAR atmospheric
315     state variables.
316 heimbach 1.1 %Over the open ocean these are
317     %converted into air-sea fluxes via the bulk formulae of
318     %\citet{large04}. The air-sea fluxes in the presence of
319     %sea-ice are handled by the ice model as described in \refsec{model}.
320 heimbach 1.29 The objective function $J$ is chosen as the ``solid'' freshwater
321 heimbach 1.42 export through LS, at approximately 74\degN, 82\degW\ in
322 dimitri 1.24 \reffig{sverdrupbasin}, integrated over the final 12-month period, i.e.,
323 dimitri 1.19 October 1, 1992 to September 30, 1993.
324     That is,
325 heimbach 1.29
326     \begin{linenomath*}
327 heimbach 1.1 \begin{equation}
328 mlosch 1.12 \label{eq:costls}
329 heimbach 1.29 J \, =
330     \frac{1}{\rho_{fresh}}
331     \int_{\mathrm{Oct\,92}}^{\mathrm{Sep\,93}}
332 heimbach 1.42 \int_{\mathrm{LS}}
333 heimbach 1.29 \, (\rho \, h \, c \, + \, \rho_{s} h_{s}c)\,u \,ds \,dt,
334 heimbach 1.1 \end{equation}
335 heimbach 1.29 \end{linenomath*}
336    
337     %\ml{[ML: shouldn't $J$ be normalized by $\rho_{\mathrm{fresh}}$ to
338     % give the units that we use in the figures?]}
339 heimbach 1.37 is the mass export of ice and snow converted to units of freshwater.
340     Furthermore, for each grid cell $(i,j)$ of the section, along which the
341     integral $\int \ldots ds$ is taken,
342     $c(i,j)$ is the fractional ice cover, $u(i,j)$ is the along-channel ice drift
343     velocity, $h(i,j)$ and $h_s(i,j)$ are the ice and snow
344 heimbach 1.29 thicknesses, and $\rho$, $\rho_s$, and $\rho_{fresh}$
345     are the ice, snow and freshwater densities, respectively.
346 heimbach 1.37 At the given resolution, the section amounts to three grid points.
347 heimbach 1.1 The forward trajectory of the model integration resembles broadly that
348 dimitri 1.19 of the model in Part~1 but some details are different due
349     to the different resolution and integration period.
350 heimbach 1.37 For example, the differences in annual solid
351 heimbach 1.42 freshwater export through LS as defined in eqn. (\refeq{costls})
352 heimbach 1.37 are smaller between no-slip and
353 heimbach 1.21 free-slip lateral boundary conditions at higher resolution,
354     as shown in Part 1, Section 4.3
355 mlosch 1.9 ($91\pm85\text{\,km$^{3}$\,y$^{-1}$}$ and
356     $77\pm110\text{\,km$^{3}$\,y$^{-1}$}$ for free-slip and no-slip, respectively,
357 heimbach 1.37 and for the C-grid LSR solver; $\pm$ values refer to standard deviations
358     of the annual mean) than at lower resolution
359 heimbach 1.8 ($116\pm101\text{\,km$^{3}$\,y$^{-1}$}$ and
360 mlosch 1.9 $39\pm64\text{\,km$^{3}$\,y$^{-1}$}$ for free-slip and no-slip, respectively).
361 dimitri 1.19 The large range of these estimates emphasizes the need to
362 mlosch 1.12 better understand the model sensitivities to lateral boundary
363 dimitri 1.19 conditions and to different configuration details. We aim to explore
364 mlosch 1.12 these sensitivities across the entire model state space in a
365 heimbach 1.14 comprehensive manner by means of the adjoint model.
366 mlosch 1.12 %The large discrepancy between all these numbers underlines the need to
367     %better understand the model sensitivities across the entire model state space
368     %resulting from different lateral boundary conditions and different
369     %configurations, and which we aim to explore in a more
370     %comprehensive manner through the adjoint.
371 heimbach 1.1
372 heimbach 1.6 The adjoint model is the transpose of the tangent linear model
373 dimitri 1.19 operator. It runs backwards in time from September 1993 to
374     January 1989. During this integration period, the Lagrange multipliers
375     of the model subject to objective function \refeq{costls} are
376     accumulated. These Langrange multipliers
377     are the sensitivities (or derivatives) of the objective function with respect
378 mlosch 1.9 %ML which can be interpreted as sensitivities of the objective function
379 dimitri 1.19 to each control variable and to each element of the intermediate
380     coupled ocean and sea ice model state variables.
381     Thus, all sensitivity elements of the model state and of the surface
382     atmospheric state are
383 heimbach 1.1 available for analysis of the transient sensitivity behavior. Over the
384 heimbach 1.14 open ocean, the adjoint of the \cite{larg-yeag:04} bulk formula scheme computes
385     sensitivities to the time-varying atmospheric state.
386     Specifically, ocean sensitivities propagate to air-sea flux sensitivities,
387     which are mapped to atmospheric state sensitivities via the
388     bulk formula adjoint.
389     Similarly, over ice-covered areas, the sea-ice model adjoint,
390     rather than the bulk formula adjoint converts surface ocean sensitivities to
391     atmospheric sensitivities.
392    
393 heimbach 1.1
394 heimbach 1.15 %---------------------------------------------------------------------------
395 heimbach 1.6 \subsection{Adjoint sensitivities}
396 heimbach 1.15 %---------------------------------------------------------------------------
397 heimbach 1.7
398 dimitri 1.33 \begin{figure*}[t]
399     \includegraphics*[width=\textwidth]{\fpath/adj_canarch_freeslip_ADJheff}
400     \caption{Sensitivity $\partial{J}/\partial{(hc)}$ in
401     m$^3$\,s$^{-1}$/m for four different times using free-slip
402     lateral sea ice boundary conditions. The color scale is chosen
403     to illustrate the patterns of the sensitivities.
404 heimbach 1.37 The objective function (\refeq{costls}) was evaluated between
405     October 1992 and September 1993.
406     Sensitivity patterns extend backward in time upstream of the
407 heimbach 1.42 LS section.
408 dimitri 1.33 \label{fig:adjhefffreeslip}}
409     \end{figure*}
410    
411     \begin{figure*}[t]
412     \includegraphics*[width=\textwidth]{\fpath/adj_canarch_noslip_ADJheff}
413     \caption{Same as in \reffig{adjhefffreeslip} but for no-slip
414     lateral sea ice boundary conditions.
415     \label{fig:adjheffnoslip}}
416     \end{figure*}
417    
418 heimbach 1.1 The most readily interpretable ice-export sensitivity is that to
419 mlosch 1.13 ice thickness, $\partial{J} / \partial{(hc)}$.
420 dimitri 1.24 Maps of transient sensitivities $\partial{J} / \partial{(hc)}$ are shown for
421     free-slip (\reffig{adjhefffreeslip}) and for no-slip
422     (\reffig{adjheffnoslip}) boundary conditions.
423 dimitri 1.25 Each figure depicts four sensitivity snapshots for the objective function $J$,
424     starting October 1, 1992, i.e., at the beginning of the 12-month averaging
425     period, and going back in time to October 2, 1989.
426     As a reminder, the full period over which the adjoint sensitivities
427     are calculated is between January 1, 1989 and September 30, 1993.
428 heimbach 1.1
429 mlosch 1.13 The sensitivity patterns for ice thickness are predominantly positive.
430 dimitri 1.24 An increase in ice volume in most places west, i.e., ``upstream'', of
431 mlosch 1.12 %``upstream'' of
432 heimbach 1.42 LS increases the solid freshwater export at the exit section.
433 heimbach 1.14 The transient nature of the sensitivity patterns is evident:
434 heimbach 1.42 the area upstream of LS that
435 heimbach 1.1 contributes to the export sensitivity is larger in the earlier snapshot.
436 dimitri 1.33 In the free slip case, the sensivity follows (backwards in time) the dominant
437     pathway through Barrow Strait
438 heimbach 1.14 into Viscount Melville Sound, and from there trough M'Clure Strait
439     into the Arctic Ocean
440     %
441     \footnote{
442 heimbach 1.15 (the branch of the ``Northwest Passage'' apparently
443 heimbach 1.14 discovered by Robert McClure during his 1850 to 1854 expedition;
444     McClure lost his vessel in the Viscount Melville Sound)
445     }.
446     %
447     Secondary paths are northward from
448     Viscount Melville Sound through Byam Martin Channel into
449     Prince Gustav Adolf Sea and through Penny Strait into MacLean Strait.
450 heimbach 1.1
451 dimitri 1.25 There are large differences between the free-slip and no-slip
452     solutions. By the end of the adjoint integration in January 1989, the
453     no-slip sensitivities (\reffig{adjheffnoslip}) are generally weaker than the
454 heimbach 1.14 free slip sensitivities and hardly reach beyond the western end of
455 dimitri 1.33 Barrow Strait. In contrast, the free-slip sensitivities
456     (\reffig{adjhefffreeslip})
457 heimbach 1.1 extend through most of the CAA and into the Arctic interior, both to
458 dimitri 1.25 the West (M'Clure Strait) and to the North (Ballantyne Strait, Prince
459 heimbach 1.14 Gustav Adolf Sea, Massey Sound). In this case the ice can
460 dimitri 1.25 drift more easily through narrow straits and a positive ice
461 heimbach 1.1 volume anomaly anywhere upstream in the CAA increases ice export
462 heimbach 1.42 through LS within the simulated 4-year period.
463 heimbach 1.1
464 heimbach 1.2 One peculiar feature in the October 1992 sensitivity maps
465     are the negative sensivities to the East and, albeit much weaker,
466 heimbach 1.42 to the West of LS.
467 heimbach 1.14 The former can be explained by indirect effects: less ice eastward
468 heimbach 1.42 of LS results in
469 heimbach 1.2 less resistance to eastward drift and thus more export.
470     A similar mechanism might account for the latter,
471 heimbach 1.8 albeit more speculative: less ice to
472 dimitri 1.24 the West means that more ice can be moved eastward from Barrow Strait
473 heimbach 1.42 into LS leading to more ice export.
474 heimbach 1.21 %\\ \ml{[ML: This
475     % paragraph is very weak, need to think of something else, longer
476     % fetch maybe? PH: Not sure what you mean. ML: I cannot remember,
477     % either, so maybe we should just leave it as is it, but the paragraph
478     % is weak, maybe we can drop it altogether and if reviewer comment on
479     % these negative sensitivies we put something back in?]}
480 heimbach 1.1
481 dimitri 1.33 \begin{figure*}
482     \centerline{
483 heimbach 1.42 \includegraphics*[height=.75\textheight]{\fpath/lancaster_adj-line}
484 dimitri 1.33 }
485 heimbach 1.42 \caption{Time vs. longitude diagrams along the axis of Viscount Melville
486     Sound, Barrow Strait, and LS. The diagrams show the
487     sensitivities (derivatives) of the solid freshwater export $J$ through LS
488 dimitri 1.33 (\reffig{sverdrupbasin}) with respect to
489 heimbach 1.42 ice thickness ($hc$, top), ice and ocean surface temperature
490     (in short SST, middle), and
491     precipitation ($p$, bottom) for free slip (left) and no slip
492     (right) boundary conditions.
493     $J$ was integrated over the last year (period above
494     green line). A precipitation perturbation during
495     Apr. 1st. 1991 (dash-dottel line) or Nov. 1st 1991 (dashed line)
496     leads to a negative or positive
497     export anomaly, respectively.
498     Contours are of the normalized ice strength $P/P^*$.
499     Bars in the longitude axis indicates the flux gate at 82$^{\circ}$W.
500 dimitri 1.33 \label{fig:lancasteradj}}
501     \end{figure*}
502    
503 heimbach 1.2 The temporal evolution of several ice export sensitivities
504     along a zonal axis through
505 heimbach 1.42 LS, Barrow Strait, and Melville Sound (115\degW\ to
506 dimitri 1.25 80\degW, averaged across the passages) are depicted in \reffig{lancasteradj}
507 heimbach 1.39 as Hovmoeller-type diagrams, that is, two-dimensional plots of sensitivities
508     as function of longitude and time.
509 dimitri 1.25 Serving as examples for the ocean, sea-ice, and atmospheric forcing components
510 mlosch 1.12 %In order to represent sensitivities to elements of the state of
511 dimitri 1.25 of the model, we depict, from top to bottom, the
512 heimbach 1.37 sensitivities to ice thickness ($hc$),
513     ice and ocean surface temperature (in short SST)
514     defined as the temperature of the
515     ocean model component's top grid cell, and precipitation ($p$) for free slip
516 heimbach 1.39 (left column) and no slip (right column) ice drift boundary conditions.
517     The green line marks the time from which onward the ice export
518     objective function was integrated (1 Oct. 1992 to 30 Sep. 1993).
519     Also indicated are times when a perturbation in precipitation
520 heimbach 1.42 leads to a positive (Apr. 1991) or to a negative (Nov. 1991) ice export
521 heimbach 1.39 anomaly (see also Fig. \ref{fig:lancpert}).
522 heimbach 1.42 Each plot is overlaid with contours 1 and 3 of the normalized ice strength
523     $P/P^*=(hc)\,\exp[-C\,(1-c)]$.
524 heimbach 1.1
525 heimbach 1.39 The Hovmoeller-type diagrams of ice thickness (top row) and SST
526 heimbach 1.1 (second row) sensitivities are coherent:
527 heimbach 1.42 more ice in LS leads
528 dimitri 1.25 to more export and one way to form more ice is by colder surface
529     temperatures. In the free-slip case the
530 mlosch 1.9 sensitivities spread out in ``pulses'' following a seasonal cycle:
531 heimbach 1.14 ice can propagate eastward (forward in time) and thus sensitivities
532     propagate westward (backwards in time) when the ice strength is low
533 heimbach 1.15 in late summer to early autumn
534 dimitri 1.24 (\reffig{lancasterfwd1}, bottom panels).
535 mlosch 1.12 In contrast, during winter, the sensitivities show little to no
536 dimitri 1.25 westward propagation as the ice is frozen solid and does not move.
537     In the no-slip case the (normalized)
538 heimbach 1.1 ice strength does not fall below 1 during the winters of 1991 to 1993
539     (mainly because the ice concentrations remain near 100\%, not
540     shown). Ice is therefore blocked and cannot drift eastwards
541     (forward in time) through the Viscount
542 heimbach 1.42 Melville Sound, Barrow Strait, and LS channel system.
543 heimbach 1.14 Consequently, the sensitivities do not propagate westward (backwards in
544 heimbach 1.42 time) and the export through LS is only affected by
545 heimbach 1.1 local ice formation and melting for the entire integration period.
546    
547 dimitri 1.33 \begin{figure*}
548     \centerline{
549 heimbach 1.42 \includegraphics*[height=.85\textheight]{\fpath/lancaster_fwd_1-line}
550 dimitri 1.33 }
551 heimbach 1.39 \caption{Hovmoeller-type diagrams along the axis of Viscount Melville
552 heimbach 1.42 Sound, Barrow Strait, and LS. The diagrams show ice
553     thickness ($hc$, top), snow thickness ($h_{s}c$, middle) and
554     normalized ice strength ($P/P^*$, bottom) for
555     free slip (left) and no slip (right) sea ice boundary
556 dimitri 1.33 conditions. For orientation, each plot is overlaid with contours 1 and 3
557 heimbach 1.41 of the normalized ice strength.
558     Green line is as in Fig. \ref{fig:lancasteradj}.
559 dimitri 1.33 \label{fig:lancasterfwd1}}
560     \end{figure*}
561    
562 heimbach 1.14 It is worth contrasting the sensitivity
563 dimitri 1.25 diagrams of \reffig{lancasteradj}
564 heimbach 1.39 with the Hovmoeller-type diagrams of the corresponding state variables
565 dimitri 1.25 (Figs.~\ref{fig:lancasterfwd1} and \ref{fig:lancasterfwd2}).
566     The sensitivities show clear causal connections of ice motion
567     over the years, that is, they expose the winter arrest and the summer
568     evolution of the ice. These causal connections cannot
569 heimbach 1.39 easily be inferred from the Hovmoeller-type diagrams of ice and snow
570 dimitri 1.25 thickness. This example illustrates the usefulness and complementary nature
571     of the adjoint variables for investigating dynamical linkages in the
572 heimbach 1.14 ocean/sea-ice system.
573 mlosch 1.12
574 dimitri 1.33 \begin{figure*}
575     \centerline{
576 heimbach 1.42 \includegraphics*[height=.85\textheight]{\fpath/lancaster_fwd_2-line}
577 dimitri 1.33 }
578     \caption{Same as in \reffig{lancasterfwd1} but for SST (top panels), SSS
579 heimbach 1.42 (middle panels), and precipitation minus evaporation plus runoff, $P-E+R$
580 heimbach 1.41 (bottom panels).
581 dimitri 1.33 \label{fig:lancasterfwd2}}
582     \end{figure*}
583 heimbach 1.14
584     The sensitivities to precipitation are more complex.
585 mlosch 1.12 %exhibit a more complex behaviour.
586 heimbach 1.14 To first order, they have an oscillatory pattern
587 mlosch 1.12 with negative sensitivity (more precipitation leads to less export)
588 heimbach 1.15 between roughly September and December and mostly positive sensitivity
589 dimitri 1.25 from January through June (sensitivities are negligible during the summer).
590 mlosch 1.12 %A fairly accurate description would note an oscillatory behaviour:
591     %they are negative (more precipitation leads to less export)
592     %before January (more precisely, between roughly August and December)
593     %and mostly positive after January
594     %(more precisely, January through July).
595 heimbach 1.1 Times of positive sensitivities coincide with times of
596 mlosch 1.12 normalized ice strengths exceeding values of~3.
597 heimbach 1.14 This pattern is broken only immediatly preceding the evaluation
598 heimbach 1.37 period of the ice export objective function in 1992. In contrast to previous
599 dimitri 1.25 years, the sensitivity is negative between January and August~1992
600     and east of 95\degW.
601 heimbach 1.14
602     We shall elucidate the mechanisms underlying
603     these precipitation sensitivities
604     in Section \ref{sec:oscillprecip}
605     in the context of forward perturbation experiments.
606 heimbach 1.1
607    
608 heimbach 1.15 %---------------------------------------------------------------------------
609 heimbach 1.8 \subsection{Forward perturbation experiments}
610 mlosch 1.13 \label{sec:forwardpert}
611 heimbach 1.15 %---------------------------------------------------------------------------
612 heimbach 1.1
613 dimitri 1.26 Applying an automatically generated adjoint model
614 mlosch 1.12 %Using an adjoint model obtained via automatic differentiation
615     %and applied
616 dimitri 1.26 under potentially highly nonlinear conditions
617     %, and one generated automatically, relying on AD tools
618     incites the question
619 heimbach 1.14 to what extent the adjoint sensitivities are ``reliable''
620     in the sense of accurately representing forward model sensitivities.
621 mlosch 1.12 Adjoint sensitivities that are physically interpretable provide
622     %Obtaining adjoint fields that are physically interpretable provides
623 dimitri 1.26 a partial answer but an independent, quantitative test is needed to
624 heimbach 1.14 gain confidence in the calculations.
625 mlosch 1.12 %credence to the calculations.
626 dimitri 1.26 Such a verification can be achieved by comparing adjoint-derived gradients
627     with ones obtained from finite-difference perturbation experiments.
628     Specifically, for a control variable $\mathbf{u}$ of interest,
629     we can readily calculate an expected change $\delta J$ in the objective
630     function for an applied perturbation $\mathbf{\delta u}$ over domain $A$
631     based on adjoint sensitivities $\partial J / \partial \mathbf{u}$:
632 heimbach 1.29
633     \begin{linenomath*}
634 heimbach 1.3 \begin{equation}
635     \delta J \, = \, \int_A \frac{\partial J}{\partial \mathbf{u}} \,
636     \mathbf{\delta u} \, dA
637     \label{eqn:adjpert}
638     \end{equation}
639 heimbach 1.29 \end{linenomath*}
640    
641 heimbach 1.37 Alternatively we can infer the magnitude of the objective perturbation $\delta J$
642 dimitri 1.26 without use of the adjoint. Instead we apply the same perturbation
643     $\mathbf{\delta u}$ to the control space over the same domain $A$ and
644 heimbach 1.37 integrate the forward model. The perturbed objective function is
645 heimbach 1.29
646     \begin{linenomath*}
647 heimbach 1.3 \begin{equation}
648     \delta J \, = \,
649 dimitri 1.26 J(\mathbf{u}+\mathbf{\delta u}) - J(\mathbf{u}).
650 heimbach 1.3 \label{eqn:fdpert}
651     \end{equation}
652 heimbach 1.29 \end{linenomath*}
653    
654 dimitri 1.26 The degree to which Eqns.~(\ref{eqn:adjpert}) and (\ref{eqn:fdpert}) agree
655 dimitri 1.28 depends both on the magnitude of perturbation $\mathbf{\delta u}$
656 dimitri 1.26 and on the length of the integration period.
657     %(note that forward and adjoint models are evaluated over the same period).
658    
659     We distinguish two types of adjoint-model tests. First there are finite
660     difference tests performed over short time intervals,
661     over which the assumption of linearity is expected to hold,
662     and where individual elements of the control vector are perturbed.
663 dimitri 1.27 We refer to these tests as gradient checks. Gradient checks are performed
664 dimitri 1.26 on a routine, automated basis for various MITgcm verification setups,
665 dimitri 1.27 including verification setups that exercise coupled ocean and sea ice model
666     configurations. These automated tests insure that updates to the MITgcm
667     repository do not break the differentiability of the code.
668    
669 dimitri 1.33 \begin{table*}
670     \caption{Summary of forward perturbation experiments
671 heimbach 1.37 and comparison of adjoint-based and finite-difference-based objective function
672 dimitri 1.33 sensitivities. All perturbations were applied to a region centered at
673     101.24$^{\circ}$W, 75.76$^{\circ}$N. The reference value for ice and snow
674 heimbach 1.42 export through LS is $J_0$ = 69.6 km$^3/yr$.
675 heimbach 1.37 For perturbations to the time-varying precipitation $p$ the perturbation
676     interval is indicated by $ \Delta t$.
677 dimitri 1.33 }
678     \label{tab:pertexp}
679     \centering
680     \begin{tabular}{ccc@{\hspace{2ex}}c@{\hspace{2ex}}cr@{\hspace{2ex}}r@{\hspace{2ex}}r}
681     \hline
682     \textsf{exp.} & variable & time & $\Delta t$ & $\mathbf{\delta u}$ &
683     $\frac{\delta J(adj.)}{km^3/yr}$ & $\frac{\delta J(fwd.)}{km^3/yr}$ &
684     \% diff. \\
685     \hline \hline
686     \textsf{ICE1} & $hc$ & 1-Jan-89 & init. & 0.5 m & 0.98 & 1.1 & 11 \\
687     \textsf{OCE1} & SST & 1-Jan-89 & init. & 0.5$^{\circ}$C & -0.125 & -0.108 & 16 \\
688     \textsf{ATM1} & $p$ & 1-Apr-91 & 10 dy & 1.6$\cdot10^{-7}$ m/s & 0.185 & 0.191 & 3 \\
689 heimbach 1.42 \textsf{ATM2} & $p$ & 1-Nov-91 & 10 dy & 1.6$\cdot10^{-7}$ m/s & -0.435 & -1.016 & 57 \\
690 dimitri 1.33 \textsf{ATM3} & $p$ & 1-Apr-91 & 10 dy & -1.6$\cdot10^{-7}$ m/s & -0.185 & -0.071 & 62 \\
691 heimbach 1.42 \textsf{ATM4} & $p$ & 1-Nov-91 & 10 dy & -1.6$\cdot10^{-7}$ m/s & 0.435 & 0.259 & 40 \\
692 dimitri 1.33 \hline
693     \end{tabular}
694     \end{table*}
695    
696 dimitri 1.28 A second type of adjoint-model tests is
697     finite difference tests performed over longer time intervals
698     % comparable to the ones used for actual sensitivity studies such as this one,
699     and where a whole area is perturbed, guided by the adjoint sensitivity maps,
700 heimbach 1.15 in order to investigate physical mechanisms.
701 dimitri 1.28 The examples discussed herein and summarized in Table \ref{tab:pertexp}
702     are of this second type of sensitivity experiments.
703     For nonlinear models, the deviations between Eqns.~(\ref{eqn:adjpert}) and
704     (\ref{eqn:fdpert}) are expected to increase both with
705 heimbach 1.3 perturbation magnitude as well as with integration time.
706    
707 dimitri 1.33 \begin{figure}
708     %\centerline{
709     \subfigure %[$hc$]
710 heimbach 1.41 {\includegraphics*[width=.49\textwidth]{\fpath/lanc_pert_heff-box}}
711 dimitri 1.33
712     \subfigure %[SST]
713 heimbach 1.41 {\includegraphics*[width=.49\textwidth]{\fpath/lanc_pert_theta-box}}
714 dimitri 1.33
715     \subfigure %[$p$]
716 heimbach 1.41 {\includegraphics*[width=.49\textwidth]{\fpath/lanc_pert_precip-box}}
717 dimitri 1.33 %}
718     \caption{
719 heimbach 1.42 Difference in monthly solid freshwater export at 82$^{\circ}$W
720     between perturbed
721 dimitri 1.33 and unperturbed forward integrations. From top to bottom, perturbations
722     are initial ice thickness (\textsf{ICE1} in Table \ref{tab:pertexp}),
723     initial sea-surface temperature (\textsf{OCE1}), and precipitation
724 heimbach 1.41 (\textsf{ATM1} and \textsf{ATM2}). The grey box indicates the period
725 heimbach 1.42 during which the ice export objective function $J$ is integrated,
726     and reflects the integrated anomalies in Table \ref{tab:pertexp}.
727 dimitri 1.33 \label{fig:lancpert}}
728     \end{figure}
729    
730 dimitri 1.26 Comparison between finite-difference and adjoint-derived ice-export
731 dimitri 1.28 perturbations show remarkable agreement for initial value perturbations of
732     ice thickness (\textsf{ICE1}) or sea surface temperature (\textsf{OCE1}).
733 heimbach 1.37 Deviations between perturbed objective function values remain below 16\% (see Table
734 dimitri 1.28 \ref{tab:pertexp}).
735 dimitri 1.24 \reffigure{lancpert} depicts the temporal evolution of
736 heimbach 1.42 perturbed minus unperturbed ice export through LS for initial ice
737 dimitri 1.26 thickness
738 dimitri 1.28 (top panel) and SST (middle panel) perturbations.
739     In both cases, differences are confined to the melting season, during which
740 heimbach 1.41 the ice unlocks and which can lead to significant export.
741     Large differences are seen during (but are not confined to) the period
742     during which the ice export objective function $J$ is integrated (grey box).
743 dimitri 1.28 As ``predicted'' by the adjoint, the two curves are of opposite sign
744 heimbach 1.8 and scales differ by almost an order of magnitude.
745 heimbach 1.42 The grey box also indicates the period over which the perturbations
746     in Table \ref{tab:pertexp} were calculated.
747 heimbach 1.8
748 heimbach 1.15 %---------------------------------------------------------------------------
749 heimbach 1.40 \subsection{Sign change of precipitation sensitivities}
750 heimbach 1.15 \label{sec:oscillprecip}
751     %---------------------------------------------------------------------------
752 heimbach 1.14
753 dimitri 1.28 Our next goal is to explain the sign and magnitude changes through time
754     of the transient precipitation sensitivities.
755     To investigate this, we have carried out the following two perturbation
756     experiments: (i) an experiment labeled \textsf{ATM1}, in which we perturb
757     precipitation over a 10-day period between April 1 and 10, 1991, coincident
758     with a period of positive adjoint sensitivities, and (ii) an experiment
759     labeled \textsf{ATM2}, in which we apply the same perturbation over a 10-day
760 heimbach 1.41 period between November 1 and 10, 1990, coincident with a period of negative
761 dimitri 1.28 adjoint sensitivities.
762 dimitri 1.26 The perturbation magnitude chosen is
763 dimitri 1.30 $\mathbf{\delta u} = 1.6 \times 10^{-7}$ m/s, which is
764     of comparable magnitude with the standard deviation of precipitation.
765     %as a measure of spatial mean standard deviation of precipitation
766     %variability. The results are as follows: First
767     The perturbation experiments confirm the sign change
768 heimbach 1.8 when perturbing in different seasons.
769 dimitri 1.30 We observe good quantitative agreement for the April 1991 case
770 heimbach 1.41 and a 50\% deviation for the November 1990 case.
771 heimbach 1.8 %
772 dimitri 1.31 The discrepancy between the finite-difference and adjoint-based sensitivity
773     estimates results from model nonlinearities and from the multi-year
774     integration period.
775     To support this statement, we repeated perturbation experiments \textsf{ATM1}
776     and \textsf{ATM2} but applied a perturbation with opposite sign, i.e.,
777     $\mathbf{\delta u} = -1.6 \times 10^{-7}$ m/s (experiments \textsf{ATM3} and
778     \textsf{ATM4} in Table \ref{tab:pertexp}).
779     For negative $\mathbf{\delta u}$, both perturbation periods lead to about
780 dimitri 1.30 50\% discrepancies between finite-difference and adjoint-derived
781 dimitri 1.31 ice export sensitivities.
782 mlosch 1.12 %
783 dimitri 1.31 The finite-difference export changes are different in amplitude for positive
784     and for negative perturbations, confirming that model nonlinearities impact
785     these calculations.
786    
787     These experiments constitute severe tests of the adjoint model in the sense
788     that they push the limit of the linearity assumption. Nevertheless, the
789     results confirm that adjoint sensitivities provide useful qualitative, and
790     within certain limits quantitative,
791     information of comprehensive model sensitivities that
792     cannot realistically be computed otherwise.
793 heimbach 1.3
794 heimbach 1.15 \begin{figure*}
795     \centerline{
796 heimbach 1.42 \includegraphics*[width=.95\textwidth]{\fpath/lancaster_pert_hov-line}
797 heimbach 1.15 }
798     \caption{
799 dimitri 1.33 Same as in \reffig{lancasterfwd1} but restricted to the period
800     1991--1993 and for the differences
801 heimbach 1.41 in (from top to bottom)
802 heimbach 1.37 ice thickness $(hc)$, snow thickness $(h_\mathrm{snow}c)$, sea-surface
803     temperature (SST), and shortwave radiation (for completeness)
804 heimbach 1.41 between a perturbed and unperturbed run in precipitation of
805 heimbach 1.42 $1.6\times10^{-1}\text{\,m\,s$^{-1}$}$ on November 1, 1991 (left panels)
806     and on April 1, 1991 (right panels). The vertical line marks the position
807     where the perturbation was applied.
808 heimbach 1.15 \label{fig:lancasterperthov}}
809     \end{figure*}
810 heimbach 1.14
811 dimitri 1.31 To investigate in more detail the oscillatory behavior of precipitation
812     sensitivities
813 heimbach 1.14 we have plotted differences in ice thickness, snow thicknesses, and SST,
814     between perturbed and unperturbed simulations
815 heimbach 1.42 along the LS axis as a function of time.
816 dimitri 1.24 \reffigure{lancasterperthov} shows how the
817 dimitri 1.31 small localized perturbations of precipitation are propagated,
818 heimbach 1.14 depending on whether applied during \textit{early} winter (left column)
819     or \textit{late} winter (right column).
820 mlosch 1.20 More precipation
821 heimbach 1.21 leads to more snow on the ice in all cases.
822     However, the same perturbation in different
823 heimbach 1.29 seasons has an opposite effect on the solid freshwater export
824 heimbach 1.42 through LS.
825 dimitri 1.31 Both the adjoint and the perturbation results suggest the following
826 heimbach 1.14 mechanism to be at play:
827 mlosch 1.20 %ML: why not let LaTeX do it? Elsevier might have it's own layout
828     \begin{itemize}
829     \item
830 heimbach 1.14 More snow in November (on thin ice) insulates the ice by reducing
831     the effective conductivity and thus the heat flux through the ice.
832     This insulating effect slows down the cooling of the surface water
833     underneath the ice. In summary, more snow early in the winter limits the ice growth
834     from above and below (negative sensitivity).
835 mlosch 1.20 \item
836 heimbach 1.14 More snow in April (on thick ice) insulates the
837     ice against melting.
838 dimitri 1.34 Shortwave radiation cannot penetrate the snow cover and snow has
839 heimbach 1.14 a higher albedo than ice (0.85 for dry snow and 0.75 for dry ice in our
840 dimitri 1.31 simulations); thus it protects the ice against melting in the spring,
841     more specifically, after January, and it leads to more ice in the
842 heimbach 1.14 following growing season.
843 mlosch 1.20 \end{itemize}
844     % \\ $\bullet$
845     % More snow in November (on thin ice) insulates the ice by reducing
846     % the effective conductivity and thus the heat flux through the ice.
847     % This insulating effect slows down the cooling of the surface water
848     % underneath the ice. In summary, more snow early in the winter limits the ice growth
849     % from above and below (negative sensitivity).
850     % \\ $\bullet$
851     % More snow in April (on thick ice) insulates the
852     % ice against melting.
853     % Short wave radiation cannot penetrate the snow cover and has
854     % a higher albedo than ice (0.85 for dry snow and 0.75 for dry ice in our
855     % case); thus it protects the ice against melting in spring
856     % (more specifically, after January), and leads to more ice in the
857     % following growing season.
858 heimbach 1.14
859 dimitri 1.31 A secondary effect is the
860     accumulation of snow, which increases the exported volume.
861     The feedback from SST appears to be negligible because
862 heimbach 1.14 there is little connection of anomalies beyond a full seasonal cycle.
863    
864 dimitri 1.31 We note that the effect of snow vs rain seems to be irrelevant
865     in explaining positive vs negative sensitivity patterns.
866     In the current implementation, the model differentiates between
867     snow and rain depending on the thermodynamic growth rate of sea ice; when it
868     is cold enough for ice to grow, all precipitation is assumed to be
869 heimbach 1.14 snow. The surface atmospheric conditions most of the year in the Lancaster
870 dimitri 1.31 Sound region are such that almost all precipitation is treated as snow,
871     except for a short period in July and August; even then, air
872 heimbach 1.14 temperatures are only slightly above freezing.
873    
874     Finally, the negative sensitivities to precipitation between 95\degW\ and
875 dimitri 1.31 85\degW\ during the spring of 1992, which break the oscillatory pattern,
876 heimbach 1.15 may also be explained by the presence of
877     snow: in an area of large snow accumulation
878 dimitri 1.31 (almost 50\,cm: see \reffig{lancasterfwd1}, middle panel),
879     ice cannot melt and it
880 heimbach 1.14 tends to block the channel so that ice coming from the West cannot
881 dimitri 1.31 pass, thus leading to less ice export in the next season.
882 heimbach 1.14 %
883     %\ml{PH: Why is this true for 1992 but not 1991?}
884 dimitri 1.31 The reason why this is true for the spring of 1992 but not for the spring of
885     1991 is that by then the high
886 heimbach 1.14 sensitivites have propagated westward out of the area of thick
887     snow and ice around 90\degW.
888 mlosch 1.13
889 heimbach 1.1 %(*)
890     %The sensitivity in Baffin Bay are more complex.
891     %The pattern evolves along the Western boundary, connecting
892 heimbach 1.42 %the LS Polynya, the Coburg Island Polynya, and the
893 heimbach 1.1 %North Water Polynya, and reaches into Nares Strait and the Kennedy Channel.
894     %The sign of sensitivities has an oscillatory character
895     %[AT FREQUENCY OF SEASONAL CYCLE?].
896     %First, we need to establish whether forward perturbation runs
897     %corroborate the oscillatory behaviour.
898     %Then, several possible explanations:
899     %(i) connection established through Nares Strait throughflow
900     %which extends into Western boundary current in Northern Baffin Bay.
901     %(ii) sea-ice concentration there is seasonal, i.e. partly
902     %ice-free during the year. Seasonal cycle in sensitivity likely
903 dimitri 1.31 %connected to ice-free vs ice-covered parts of the year.
904 heimbach 1.1 %Negative sensitivities can potentially be attributed
905 heimbach 1.42 %to blocking of LS ice export by Western boundary ice
906 heimbach 1.1 %in Baffin Bay.
907 heimbach 1.42 %(iii) Alternatively to (ii), flow reversal in LS is a possibility
908 heimbach 1.1 %(in reality there's a Northern counter current hugging the coast of
909     %Devon Island which we probably don't resolve).
910    
911 heimbach 1.42 %Remote control of Kennedy Channel on LS ice export
912 dimitri 1.31 %seems a nice test for appropriateness of free-slip vs no-slip BCs.
913 heimbach 1.1
914     %\paragraph{Sensitivities to the sea-ice area}
915    
916 dimitri 1.24 %\refigure{XXX} depicts transient sea-ice export sensitivities
917 heimbach 1.1 %to changes in sea-ice concentration
918     % $\partial J / \partial area$ using free-slip
919     %(left column) and no-slip (right column) boundary conditions.
920     %Sensitivity snapshots are depicted for (from top to bottom)
921     %12, 24, 36, and 48 months prior to May 2003.
922     %Contrary to the steady patterns seen for thickness sensitivities,
923     %the ice-concentration sensitivities exhibit a strong seasonal cycle
924     %in large parts of the domain (but synchronized on large scale).
925     %The following discussion is w.r.t. free-slip run.
926    
927     %(*)
928     %Months, during which sensitivities are negative:
929     %\\
930     %0 to 5 Db=N/A, Dr=5 (May-Jan) \\
931     %10 to 17 Db=7, Dr=5 (Jul-Jan) \\
932     %22 to 29 Db=7, Dr=5 (Jul-Jan) \\
933     %34 to 41 Db=7, Dr=5 (Jul-Jan) \\
934     %46 to 49 D=N/A \\
935     %%
936     %These negative sensitivities seem to be connected to months
937     %during which main parts of the CAA are essentially entirely ice-covered.
938     %This means that increase in ice concentration during this period
939     %will likely reduce ice export due to blocking
940     %[NEED TO EXPLAIN WHY THIS IS NOT THE CASE FOR dJ/dHEFF].
941     %Only during periods where substantial parts of the CAA are
942     %ice free (i.e. sea-ice concentration is less than one in larger parts of
943     %the CAA) will an increase in ice-concentration increase ice export.
944    
945     %(*)
946     %Sensitivities peak about 2-3 months before sign reversal, i.e.
947     %max. negative sensitivities are expected end of July
948     %[DOUBLE CHECK THIS].
949    
950     %(*)
951     %Peaks/bursts of sensitivities for months
952     %14-17, 19-21, 27-29, 30-33, 38-40, 42-45
953    
954     %(*)
955 mlosch 1.9 %Spatial ``anti-correlation'' (in sign) between main sensitivity branch
956 heimbach 1.1 %(essentially Northwest Passage and immediate connecting channels),
957     %and remote places.
958     %For example: month 20, 28, 31.5, 40, 43.
959     %The timings of max. sensitivity extent are similar between
960     %free-slip and no-slip run; and patterns are similar within CAA,
961     %but differ in the Arctic Ocean interior.
962    
963     %(*)
964     %Interesting (but real?) patterns in Arctic Ocean interior.
965    
966     %\paragraph{Sensitivities to the sea-ice velocity}
967    
968     %(*)
969     %Patterns of ADJuice at almost any point in time are rather complicated
970     %(in particular with respect to spatial structure of signs).
971     %Might warrant perturbation tests.
972     %Patterns of ADJvice, on the other hand, are more spatially coherent,
973     %but still hard to interpret (or even counter-intuitive
974     %in many places).
975    
976     %(*)
977 mlosch 1.9 %``Growth in extent of sensitivities'' goes in clear pulses:
978 heimbach 1.1 %almost no change between months: 0-5, 10-20, 24-32, 36-44
979     %These essentially correspond to months of
980    
981    
982     %\subsection{Sensitivities to the oceanic state}
983    
984     %\paragraph{Sensitivities to theta}
985    
986     %\textit{Sensitivities at the surface (z = 5 m)}
987    
988     %(*)
989     %mabye redo with caxmax=0.02 or even 0.05
990    
991     %(*)
992     %Core of negative sensitivities spreading through the CAA as
993     %one might expect [TEST]:
994     %Increase in SST will decrease ice thickness and therefore ice export.
995    
996     %(*)
997     %What's maybe unexpected is patterns of positive sensitivities
998 mlosch 1.9 %at the fringes of the ``core'', e.g. in the Southern channels
999 heimbach 1.1 %(Bellot St., Peel Sound, M'Clintock Channel), and to the North
1000     %(initially MacLean St., Prince Gustav Adolf Sea, Hazen St.,
1001     %then shifting Northward into the Arctic interior).
1002    
1003     %(*)
1004     %Marked sensitivity from the Arctic interior roughly along 60$^{\circ}$W
1005     %propagating into Lincoln Sea, then
1006     %entering Nares Strait and Smith Sound, periodically
1007 heimbach 1.42 %warming or cooling[???] the LS exit.
1008 heimbach 1.1
1009     %\textit{Sensitivities at depth (z = 200 m)}
1010    
1011     %(*)
1012     %Negative sensitivities almost everywhere, as might be expected.
1013    
1014     %(*)
1015     %Sensitivity patterns between free-slip and no-slip BCs
1016     %are quite similar, except in Lincoln Sea (North of Nares St),
1017     %where the sign is reversed (but pattern remains similar).
1018    
1019     %\paragraph{Sensitivities to salt}
1020    
1021     %T.B.D.
1022    
1023     %\paragraph{Sensitivities to velocity}
1024    
1025     %T.B.D.
1026    
1027     %\subsection{Sensitivities to the atmospheric state}
1028    
1029     %\begin{itemize}
1030     %%
1031     %\item
1032     %plot of ATEMP for 12, 24, 36, 48 months
1033     %%
1034     %\item
1035     %plot of HEFF for 12, 24, 36, 48 months
1036     %%
1037     %\end{itemize}
1038    
1039    
1040    
1041 dimitri 1.25 %\reffigure{4yradjheff}(a--d) depict sensitivities of sea-ice export
1042 heimbach 1.1 %through Fram Strait in December 1995 to changes in sea-ice thickness
1043     %12, 24, 36, 48 months back in time. Corresponding sensitivities to
1044     %ocean surface temperature are depicted in
1045     %\reffig{4yradjthetalev1}(a--d). The main characteristics is
1046     %consistency with expected advection of sea-ice over the relevant time
1047     %scales considered. The general positive pattern means that an
1048     %increase in sea-ice thickness at location $(x,y)$ and time $t$ will
1049     %increase sea-ice export through Fram Strait at time $T_e$. Largest
1050     %distances from Fram Strait indicate fastest sea-ice advection over the
1051     %time span considered. The ice thickness sensitivities are in close
1052     %correspondence to ocean surface sentivitites, but of opposite sign.
1053     %An increase in temperature will incur ice melting, decrease in ice
1054     %thickness, and therefore decrease in sea-ice export at time $T_e$.
1055    
1056     %The picture is fundamentally different and much more complex
1057     %for sensitivities to ocean temperatures away from the surface.
1058 dimitri 1.25 %\reffigure{4yradjthetalev10??}(a--d) depicts ice export sensitivities to
1059 heimbach 1.1 %temperatures at roughly 400 m depth.
1060     %Primary features are the effect of the heat transport of the North
1061     %Atlantic current which feeds into the West Spitsbergen current,
1062     %the circulation around Svalbard, and ...
1063    
1064    
1065     %%\begin{figure}[t!]
1066     %%\centerline{
1067     %%\subfigure[{\footnotesize -12 months}]
1068     %%{\includegraphics*[width=0.44\linewidth]{\fpath/run_4yr_ADJheff_arc_lev1_tim072_cmax2.0E+02.eps}}
1069     %%\includegraphics*[width=.3\textwidth]{H_c.bin_res_100_lev1.pdf}
1070     %%
1071     %%\subfigure[{\footnotesize -24 months}]
1072     %%{\includegraphics*[width=0.44\linewidth]{\fpath/run_4yr_ADJheff_arc_lev1_tim145_cmax2.0E+02.eps}}
1073     %%}
1074     %%
1075     %%\caption{Sensitivity of sea-ice export through Fram Strait in December 2005 to
1076     %%sea-ice thickness at various prior times.
1077     %%\label{fig:4yradjheff}}
1078     %%\end{figure}
1079    
1080    
1081     %\ml{[based on the movie series
1082     % zzz\_run\_export\_canarch\_freeslip\_4yr\_1989\_ADJ*:]} The ice
1083     %export through the Canadian Archipelag is highly sensitive to the
1084     %previous state of the ocean-ice system in the Archipelago and the
1085     %Western Arctic. According to the \ml{(adjoint)} senstivities of the
1086 heimbach 1.42 %eastward ice transport through LS (\reffig{sverdrupbasin})
1087 dimitri 1.19 %with respect to ice volume (thickness), ocean
1088 heimbach 1.1 %surface temperature, and vertical diffusivity near the surface
1089     %(\reffig{fouryearadj}) after 4 years of integration the following
1090     %mechanisms can be identified: near the ``observation'' (cross-section
1091     %G), smaller vertical diffusivities lead to lower surface temperatures
1092     %and hence to more ice that is available for export. Further away from
1093     %cross-section G, the sensitivity to vertical diffusivity has the
1094     %opposite sign, but temperature and ice volume sensitivities have the
1095     %same sign as close to the observation.
1096    
1097    
1098 mlosch 1.9
1099 heimbach 1.1 %%% Local Variables:
1100     %%% mode: latex
1101 mlosch 1.9 %%% TeX-master: "ceaice_part2"
1102 heimbach 1.1 %%% End:

  ViewVC Help
Powered by ViewVC 1.1.22