SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
modn_assim.F90
Go to the documentation of this file.
1 !SFX_LIC Copyright 1994-2014 CNRS, Meteo-France and Universite Paul Sabatier
2 !SFX_LIC This is part of the SURFEX software governed by the CeCILL-C licence
3 !SFX_LIC version 1. See LICENSE, CeCILL-C_V1-en.txt and CeCILL-C_V1-fr.txt
4 !SFX_LIC for details. version 1.
5 ! ##################
6  MODULE modn_assim
7 ! ##################
8 !
9 !!**** *MODN_ASSIM - declaration of keys for ISBA assimilation scheme (2DVAR, Bouyssel et al.)
10 !!
11 !! PURPOSE
12 !! -------
13 !
14 !!
15 !!** IMPLICIT ARGUMENTS
16 !! ------------------
17 !! None
18 !!
19 !! REFERENCE
20 !! ---------
21 !!
22 !! AUTHOR
23 !! ------
24 !! L. Jarlan *Meteo France*
25 !!
26 !! MODIFICATIONS
27 !! -------------
28 !! Original 23/02/05
29 !! Merge assimilation T. Aspelien met.no (04/2012)
30 !
31 !* 0. DECLARATIONS
32 ! ------------
33 !
34 USE modd_assim, ONLY: lassim,cassim,cassim_isba,nprintlev,larome,lecsst,laesst,laesnm,lwatertg2, &
35  laladsurf,lread_sst_from_file,cfile_format_sst,lextrap_sea,lextrap_water, &
36  lextrap_nature,nechgu,xrclimca,xrclisst,xsigh2mo,xsigt2mo,xsigwgo,xsigwgb, &
37  xsigw2b,lobswg,lobs2m,limveg,xsprecip2,xrthr_qc,xsigwgo_max,xrscal_jac, &
38  cbio,lprt,lbev,lbfixed,nobstype,xerrobs_m,nnco,nivar,nvar,cvar_m,lsim, &
39  xsigma_m,xtprt_m,nncv,xscale_q,xscale_qlai,xalph,lobsheader,lobsnat, &
40  cfile_format_obs,cfile_format_lsm,cfile_format_clim,cfile_format_fg, &
41  nboutput,cprefix_m,cprefix_bio,lenkf,ldenkf,xassim_winh,nens,nie,xinfl_m, &
42  xaddinfl_m,xaddtimecorr_m,lens_gen,lpb_correlations,lperturbation_run, &
43  lbias_correction
44 !
45 IMPLICIT NONE
46 !
47 namelist/nam_assim/lassim,cassim,cassim_isba,nprintlev,larome,lecsst,laesst,laesnm,laladsurf, &
48  lread_sst_from_file,cfile_format_sst,lextrap_sea,lextrap_water,lextrap_nature,&
49  lwatertg2,nboutput,cfile_format_lsm,cfile_format_clim,cfile_format_fg
50 namelist/nam_nacveg/nechgu,xrclimca,xrclisst,xsigh2mo,xsigt2mo,xsigwgo,xsigwgb,xsigw2b, &
51  lobswg,lobs2m,limveg,xsprecip2,xrthr_qc,xsigwgo_max,xrscal_jac
52 namelist/nam_io_varassim/lprt, lsim, lbev, lbfixed
53 namelist/nam_obs/nobstype,lobsheader,cfile_format_obs, lobsnat, xerrobs_m, nnco
54 namelist/nam_var/nivar, nvar, cvar_m, cprefix_m, xsigma_m, xtprt_m, nncv, xscale_q, xscale_qlai, &
55  cbio, cprefix_bio, xalph
56 namelist/nam_ens/nens, nie, xassim_winh, xinfl_m, xaddinfl_m, xaddtimecorr_m, &
57  lens_gen, lpb_correlations, lperturbation_run, lbias_correction, lenkf, ldenkf
58 !
59 END MODULE modn_assim