SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
modn_prep_flake.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_FLAKE* - declaration of namelist NAM_PREP_FLAKE
10 !!
11 !! PURPOSE
12 !! -------
13 ! The purpose of this module is to specify the namelist NAM_PREP_FLAKE
14 ! which concern the surface configuration.
15 !
16 !!
17 !!** IMPLICIT ARGUMENTS
18 !! ------------------
19 !!
20 !! REFERENCE
21 !! ---------
22 !!
23 !!
24 !! AUTHOR
25 !! ------
26 !! S.Malardel *Meteo France*
27 !!
28 !! MODIFICATIONS
29 !! -------------
30 !! Original 10/2003
31 !-------------------------------------------------------------------------------
32 !
33 !* 0. DECLARATIONS
34 ! ------------
35 !
36 USE modd_prep_flake, ONLY : cfile_flake, ctype, cfilepgd_flake, ctypepgd, &
37  xts_unif, &
38  xunif_t_snow, &
39  xunif_t_ice, &
40  xunif_t_wml, &
41  xunif_t_bot, &
42  xunif_t_b1, &
43  xunif_ct, &
44  xunif_h_snow, &
45  xunif_h_ice, &
46  xunif_h_ml, &
47  xunif_h_b1, &
48  lclim_lake
49 !
50 IMPLICIT NONE
51 !
52 INTEGER :: NYEAR ! YEAR for surface
53 INTEGER :: NMONTH ! MONTH for surface
54 INTEGER :: NDAY ! DAY for surface
55 REAL :: XTIME ! TIME for surface
56 LOGICAL :: LWAT_SBL ! flag to use air layers inside the Surface Boundary Layer
57 !
58 namelist/nam_prep_flake/cfile_flake, ctype, cfilepgd_flake, ctypepgd, xts_unif, &
59  xunif_t_snow, xunif_t_ice, &
60  xunif_t_wml, &
61  xunif_t_bot, xunif_t_b1, &
62  xunif_ct, &
63  xunif_h_snow, xunif_h_ice, &
64  xunif_h_ml, xunif_h_b1, &
65  lclim_lake, &
66  nyear, nmonth, nday, xtime, lwat_sbl
67 ! Only one file is alowed, which name will be stored in CFILE_FLAKE.
68 ! Initial conditions for all FLake variables may be present in the file.
69 !
70 !
71 END MODULE modn_prep_flake