Changeset 2483
- Timestamp:
- 2010-12-18T13:36:55+01:00 (14 years ago)
- Location:
- branches/nemo_v3_3_beta/DOC/TexFiles
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/nemo_v3_3_beta/DOC/TexFiles/Biblio/Biblio.bib
r2376 r2483 1371 1371 url = {http://climate.lanl.gov/Software/SCRIP/SCRIPusers.pdf} 1372 1372 } 1373 1374 @TECHREPORT{Jones_1998, 1375 title = {A User's Guide for SCRIP: A Spherical Coordinate Remapping and Interpolation Package. Version 1.4}, 1376 institution = {Los Alamos National Laboratory}, 1377 year = {1998}, 1378 author = {P. W. Jones}, 1379 url = {http://climate.lanl.gov/Software/SCRIP/SCRIPusers.pdf} 1380 } 1373 1381 1374 1382 @ARTICLE{Kantha_Clayson_1994, -
branches/nemo_v3_3_beta/DOC/TexFiles/Chapters/Chap_ASM.tex
r2474 r2483 13 13 $\ $\newline % force a new line 14 14 15 The ASM code adds the functionality to apply increments to model variables,15 The ASM code adds the functionality to apply increments to the model variables: 16 16 temperature, salinity, sea surface height, velocity and sea ice concentration. 17 17 These are read into the model from a NetCDF file which may be produced by data … … 40 40 IAU is used when \np{ln\_asmiau} is set to true. 41 41 42 With IAU, the model state trajectory in the assimilation window42 With IAU, the model state trajectory ${\bf x}$ in the assimilation window 43 43 ($t_{0} \leq t_{i} \leq t_{N}$) 44 is corrected by adding the analysis increments for 45 for temperature, salinity, horizontal velocity and SSH 44 is corrected by adding the analysis increments for temperature, salinity, horizontal velocity and SSH 46 45 as additional tendency terms to the prognostic equations: 47 46 \begin{eqnarray} \label{eq:wa_traj_iau} … … 49 48 \; + \; F_{i} \delta \tilde{\bf x}^{a} 50 49 \end{eqnarray} 51 where $F_{i}$ is a weighting function defined such that $\sum_{i=1}^{N} F_{i}=1$. 50 where $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 53 after the increments are applied. 52 54 To control the adjustment time of the model to the increment, 53 55 the increment can be applied over an arbitrary sub-window, … … 68 70 The second function employs peaked hat-like weights in order to give maximum 69 71 weight in the centre of the sub-window, with the weighting reduced 70 linearly to a small value at the window end-points .72 linearly to a small value at the window end-points: 71 73 \begin{eqnarray} \label{eq:F2_i} 72 74 F^{(2)}_{i} -
branches/nemo_v3_3_beta/DOC/TexFiles/Chapters/Chap_OBS.tex
r2474 r2483 14 14 15 15 The observation and model comparison code (OBS) reads in observation files 16 (profile temperature and salinity, sea surface temperature, sea level anomaly 17 and sea ice concentration) and calculates an interpolated model equivalent16 (profile temperature and salinity, sea surface temperature, sea level anomaly, 17 sea ice concentration, and velocity) and calculates an interpolated model equivalent 18 18 value at the observation location and nearest model timestep. The OBS code is 19 19 called from \np{opa.F90} in order to initialise the model and to calculate the … … 26 26 For {\em in situ} profiles, a 1D vertical interpolator is needed in addition to 27 27 provide model fields at the observation depths. Currently this only works in 28 z-level model configurations but is currentlybeing developed to work with a28 z-level model configurations, but is being developed to work with a 29 29 generalised vertical coordinate system. 30 Temperature data from moored buoys (TAO, TRITON, PIRATA) whichin the30 Temperature data from moored buoys (TAO, TRITON, PIRATA) in the 31 31 ENACT/ENSEMBLES data-base are available as daily averaged quantities. For this 32 type of observation sthe32 type of observation the 33 33 observation operator will compare such observations to the model temperature 34 fields over one day. The relevant observation type may be specified in the namelist34 fields averaged over one day. The relevant observation type may be specified in the namelist 35 35 using \np{endailyavtypes}. Otherwise the model value from the nearest 36 36 timestep to the observation time is used. 37 37 38 The resulting data issaved in a ``feedback'' file (or files) which can be used38 The resulting data are saved in a ``feedback'' file (or files) which can be used 39 39 for model validation and verification and also to provide information for data 40 40 assimilation. This code is controlled by the namelist \textit{nam\_obs}. To … … 643 643 iterative scheme that involves first mapping a quadrilateral cell 644 644 into a cell with coordinates (0,0), (1,0), (0,1) and (1,1). This 645 method is based on the SCRIP interpolation package \citep{Jones_ MWR99,Jones_Bk01}.645 method is based on the SCRIP interpolation package \citep{Jones_1998}. 646 646 647 647 \end{enumerate} … … 702 702 P and B, etc.. The method used is 703 703 similar to the method used in 704 the S cripp interpolation package \citep{Jones_Bk01}.704 the SCRIP interpolation package \citep{Jones_1998}. 705 705 706 706 In order to speed up the grid search, there is the possibility to construct -
branches/nemo_v3_3_beta/DOC/TexFiles/Namelist/namasm
r2349 r2483 4 4 ln_bkgwri = .false. ! write out background state (T) or not (F) 5 5 ln_trjwri = .false. ! write out state trajectory (T) or not (F) 6 ln_trainc = . false. ! apply tracer increments (T) or not (F)7 ln_dyninc = . false. ! apply velocity increments (T) or not (F)8 ln_sshinc = . false. ! applying SSH increments (T) or not (F)6 ln_trainc = .true. ! apply tracer increments (T) or not (F) 7 ln_dyninc = .true. ! apply velocity increments (T) or not (F) 8 ln_sshinc = .true. ! applying SSH increments (T) or not (F) 9 9 ln_asmdin = .false. ! DI: Direct Initialization (T) or not (F) 10 ln_asmiau = . false. ! IAU: Incremental Analysis Updating (T) or not (F)10 ln_asmiau = .true. ! IAU: Incremental Analysis Updating (T) or not (F) 11 11 nitbkg = 0 ! timestep of background in [0,nitend-nit000-1] 12 12 nitdin = 0 ! timestep of background for DI in [0,nitend-nit000-1]
Note: See TracChangeset
for help on using the changeset viewer.