SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
modn_prep_watflux.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_WATFLUX* - declaration of namelist NAM_PREP_WATFLUX
10 !!
11 !! PURPOSE
12 !! -------
13 ! The purpose of this module is to specify the namelist NAM_PREP_WATFLUX
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_watflux, ONLY : cfile_watflx, ctype, cfilepgd_watflx, ctypepgd, xts_water_unif
37 
38 !
39 IMPLICIT NONE
40 !
41 INTEGER :: NYEAR ! YEAR for surface
42 INTEGER :: NMONTH ! MONTH for surface
43 INTEGER :: NDAY ! DAY for surface
44 REAL :: XTIME ! TIME for surface
45 LOGICAL :: LWAT_SBL ! flag to use air layers inside the Surface Boundary Layer
46 
47 !
48 namelist/nam_prep_watflux/cfile_watflx, ctype, cfilepgd_watflx, ctypepgd, xts_water_unif, &
49  nyear, nmonth, nday, xtime, lwat_sbl
50 !
51 END MODULE modn_prep_watflux