SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
modn_prep_isba.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 ! ##################
7 ! ##################
8 !
9 !!**** *MODN_PREP_ISBA* - declaration of namelist NAM_PREP_ISBA
10 !!
11 !! PURPOSE
12 !! -------
13 ! The purpose of this module is to specify the namelist NAM_PREP_ISBA
14 !
15 !!
16 !!** IMPLICIT ARGUMENTS
17 !! ------------------
18 !!
19 !! REFERENCE
20 !! ---------
21 !!
22 !!
23 !! AUTHOR
24 !! ------
25 !! V. Masson *Meteo France*
26 !!
27 !! MODIFICATIONS
28 !! -------------
29 !! Original 01/2004
30 !-------------------------------------------------------------------------------
31 !
32 !* 0. DECLARATIONS
33 ! ------------
34 !
35 USE modd_prep_isba, ONLY : cfile_isba, ctype, cfilepgd_isba, ctypepgd, &
36  cfile_hug, ctype_hug, &
37  cfile_hug_surf, cfile_hug_root, cfile_hug_deep, &
38  xhug_surf, xhug_root, xhug_deep, &
39  xhugi_surf, xhugi_root, xhugi_deep, &
40  cfile_tg, ctype_tg, &
41  cfile_tg_surf, cfile_tg_root, cfile_tg_deep, &
42  xtg_surf, xtg_root, xtg_deep,lextrap_tg,lextrap_wg,&
43  lextrap_wgi,lextrap_sn
44 
45 !
46 IMPLICIT NONE
47 INTEGER :: NYEAR ! YEAR for surface
48 INTEGER :: NMONTH ! MONTH for surface
49 INTEGER :: NDAY ! DAY for surface
50 REAL :: XTIME ! TIME for surface
51 LOGICAL :: LISBA_CANOPY !flag to use air layers inside the canopy
52 !
53 namelist/nam_prep_isba/cfile_isba, ctype, cfilepgd_isba, ctypepgd, &
54  cfile_hug, ctype_hug, &
55  cfile_hug_surf, cfile_hug_root, cfile_hug_deep, &
56  xhug_surf, xhug_root, xhug_deep, &
57  xhugi_surf, xhugi_root, xhugi_deep, &
58  cfile_tg, ctype_tg, &
59  cfile_tg_surf, cfile_tg_root, cfile_tg_deep, &
60  xtg_surf, xtg_root, xtg_deep, &
61  nyear, nmonth, nday, xtime, lisba_canopy,lextrap_tg,&
62  lextrap_wg,lextrap_wgi,lextrap_sn
63 !
64 END MODULE modn_prep_isba