New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Chap_ASM.tex in branches/dev_2802_OBStools/DOC/TexFiles/Chapters – NEMO

source: branches/dev_2802_OBStools/DOC/TexFiles/Chapters/Chap_ASM.tex @ 3069

Last change on this file since 3069 was 3069, checked in by djlea, 12 years ago

Update OBS and ASM documentation. Small updates and fixes to dataplot.

File size: 5.6 KB
Line 
1% ================================================================
2% Chapter Assimilation increments (ASM)
3% ================================================================
4\chapter{Apply assimilation increments (ASM)}
5\label{ASM}
6
7Authors: D. Lea,  M. Martin, K. Mogensen, A. Weaver, ...   % do we keep
8
9\minitoc
10
11
12\newpage
13$\ $\newline    % force a new line
14
15The ASM code adds the functionality to apply increments to the model variables:
16temperature, salinity, sea surface height, velocity and sea ice concentration.
17These are read into the model from a NetCDF file which may be produced by separate data
18assimilation code.  The code can also output model background fields which are used
19as an input to data assimilation code. This is all controlled by the namelist
20\textit{nam\_asminc}.  There is a brief description of all the namelist options
21provided.  To build the ASM code \key{asminc} must be set.
22
23%===============================================================
24
25\section{Direct initialization}
26\label{ASM_DI}
27
28Direct initialization (DI) refers to the instantaneous correction
29of the model background state using the analysis increment.
30DI is used when \np{ln\_asmdin} is set to true.
31
32\section{Incremental Analysis Updates}
33\label{ASM_IAU}
34
35Rather than updating the model state directly with the analysis increment,
36it may be preferable to introduce the increment gradually into the ocean
37model in order to minimize spurious adjustment processes. This technique
38is referred to as Incremental Analysis Updates (IAU) \citep{Bloom_al_MWR96}.
39IAU is a common technique used with 3D assimilation methods such as 3D-Var or OI.
40IAU is used when \np{ln\_asmiau} is set to true.
41
42With IAU, the model state trajectory ${\bf x}$ in the assimilation window
43($t_{0} \leq t_{i} \leq t_{N}$)
44is corrected by adding the analysis increments for temperature, salinity, horizontal velocity and SSH
45as additional tendency terms to the prognostic equations:
46\begin{eqnarray}     \label{eq:wa_traj_iau}
47{\bf x}^{a}(t_{i}) = M(t_{i}, t_{0})[{\bf x}^{b}(t_{0})]
48\; + \; F_{i} \delta \tilde{\bf x}^{a} 
49\end{eqnarray}
50where $F_{i}$ is a weighting function for applying the increments $\delta
51\tilde{\bf x}^{a}$ defined such that $\sum_{i=1}^{N} F_{i}=1$.
52${\bf x}^b$ denotes the model initial state and ${\bf x}^a$ is the model state
53after the increments are applied.
54To control the adjustment time of the model to the increment,
55the increment can be applied over an arbitrary sub-window,
56$t_{m} \leq t_{i} \leq t_{n}$, of the main assimilation window,
57where $t_{0} \leq t_{m} \leq t_{i}$ and $t_{i} \leq t_{n} \leq t_{N}$,
58Typically the increments are spread evenly over the full window.
59In addition, two different weighting functions have been implemented.
60The first function employs constant weights,
61\begin{eqnarray}    \label{eq:F1_i}
62F^{(1)}_{i}
63=\left\{ \begin{array}{ll}
64   0     &    {\rm if} \; \; \; t_{i} < t_{m}                \\
65   1/M &    {\rm if} \; \; \; t_{m} < t_{i} \leq t_{n} \\
66   0     &    {\rm if} \; \; \; t_{i} > t_{n}
67  \end{array} \right.
68\end{eqnarray}
69where $M = m-n$.
70The second function employs peaked hat-like weights in order to give maximum
71weight in the centre of the sub-window, with the weighting reduced
72linearly to a small value at the window end-points:
73\begin{eqnarray}     \label{eq:F2_i}
74F^{(2)}_{i}
75=\left\{ \begin{array}{ll}
76   0                           &    {\rm if} \; \; \; t_{i}       <     t_{m}                        \\
77   \alpha \, i               &    {\rm if} \; \; \; t_{m}    \leq t_{i}    \leq   t_{M/2}   \\
78   \alpha \, (M - i +1) &    {\rm if} \; \; \; t_{M/2}  <    t_{i}    \leq   t_{n}       \\
79   0                            &   {\rm if} \; \; \; t_{i}        >    t_{n}
80  \end{array} \right.
81\end{eqnarray}
82where $\alpha^{-1} = \sum_{i=1}^{M/2} 2i$ and $M$ is assumed to be even.
83The weights described by \eqref{eq:F2_i} provide a
84smoother transition of the analysis trajectory from one assimilation cycle
85to the next than that described by \eqref{eq:F1_i}.
86
87%==========================================================================
88
89\section{Implementation details}
90\label{ASM_details}
91
92Here we show an example namelist and the header of an example assimilation
93increments file on the ORCA2 grid.
94
95%------------------------------------------namasm-----------------------------------------------------
96\namdisplay{namasm}
97%-------------------------------------------------------------------------------------------------------------
98
99The header of an assimilation increments file produced using the NetCDF tool
100\mbox{\textit{ncdump~-h}} is shown below
101
102\begin{alltt}
103\tiny
104\begin{verbatim}
105netcdf assim_background_increments {
106dimensions:
107        x = 182 ;
108        y = 149 ;
109        z = 31 ;
110        t = UNLIMITED ; // (1 currently)
111variables:
112        float nav_lon(y, x) ;
113        float nav_lat(y, x) ;
114        float nav_lev(z) ;
115        double time_counter(t) ;
116        double time ;
117        double z_inc_dateb ;
118        double z_inc_datef ;
119        double bckint(t, z, y, x) ;
120        double bckins(t, z, y, x) ;
121        double bckinu(t, z, y, x) ;
122        double bckinv(t, z, y, x) ;
123        double bckineta(t, y, x) ;
124
125// global attributes:
126                :DOMAIN_number_total = 1 ;
127                :DOMAIN_number = 0 ;
128                :DOMAIN_dimensions_ids = 1, 2 ;
129                :DOMAIN_size_global = 182, 149 ;
130                :DOMAIN_size_local = 182, 149 ;
131                :DOMAIN_position_first = 1, 1 ;
132                :DOMAIN_position_last = 182, 149 ;
133                :DOMAIN_halo_size_start = 0, 0 ;
134                :DOMAIN_halo_size_end = 0, 0 ;
135                :DOMAIN_type = "BOX" ;
136}
137\end{verbatim}
138\end{alltt}
Note: See TracBrowser for help on using the repository browser.