SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
modn_prep_teb.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_prep_teb
7 ! ##################
8 !
9 !!**** *MODN_PREP_TEB* - declaration of namelist NAM_PREP_TEB
10 !!
11 !! PURPOSE
12 !! -------
13 ! The purpose of this module is to specify the namelist NAM_PREP_TEB
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_teb, ONLY : cfile_teb, ctype, cfilepgd_teb, ctypepgd, &
36  cfile_ws, ctype_ws, cfile_ts, ctype_ts, &
37  xws_roof, xws_road, xhui_bld, &
38  xts_roof, xts_road, xts_wall, xti_bld, xti_road
39 
40 !
41 IMPLICIT NONE
42 !
43 INTEGER :: NYEAR ! YEAR for surface
44 INTEGER :: NMONTH ! MONTH for surface
45 INTEGER :: NDAY ! DAY for surface
46 REAL :: XTIME ! TIME for surface
47 LOGICAL :: LTEB_CANOPY ! flag to use air layers inside the canopy
48  CHARACTER(LEN=4) :: CROAD_DIR ! flag to use uniform road orientation or not
49  CHARACTER(LEN=4) :: CWALL_OPT ! flag to use uniform walls or 2 separated walls
50 !
51 namelist/nam_prep_teb/cfile_teb, ctype, cfilepgd_teb, ctypepgd, &
52  cfile_ws, ctype_ws, xws_roof, xws_road, &
53  cfile_ts, ctype_ts, xts_roof, xts_road, &
54  xts_wall, xti_bld, xti_road, xhui_bld, &
55  nyear, nmonth, nday, xtime, lteb_canopy, &
56  croad_dir, cwall_opt
57 !
58 END MODULE modn_prep_teb