SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
default_prep_teb_greenroof.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 !!**** *DEFAULT_PREP_TEB_GREENROOF* - routine to set default values for the configuration for ISBA fields preparation
10 !!
11 !! PURPOSE
12 !! -------
13 !!
14 !!** METHOD
15 !! ------
16 !! Based on "default_prep_teb_greenroof"
17 !!
18 !! EXTERNAL
19 !! --------
20 !!
21 !!
22 !! IMPLICIT ARGUMENTS
23 !! ------------------
24 !!
25 !! REFERENCE
26 !! ---------
27 !!
28 !!
29 !! AUTHOR
30 !! ------
31 !! A. Lemonsu & C. de Munck
32 !!
33 !! MODIFICATIONS
34 !! -------------
35 !! Original 07/2011
36 !-------------------------------------------------------------------------------
37 !
38 !* 0. DECLARATIONS
39 ! ------------
40 !
41 USE modd_prep_teb_greenroof, ONLY : cfile_gr, ctype, cfilepgd_gr, ctypepgd, &
42  cfile_hug_gr, ctype_hug, &
43  cfile_hug_surf_gr, cfile_hug_root_gr, cfile_hug_deep_gr, &
44  xhug_surf_gr, xhug_root_gr, xhug_deep_gr, &
45  xhugi_surf_gr, xhugi_root_gr, xhugi_deep_gr, &
46  cfile_tg_gr, ctype_tg, &
47  cfile_tg_surf_gr, cfile_tg_root_gr, cfile_tg_deep_gr, &
48  xtg_surf_gr, xtg_root_gr, xtg_deep_gr, &
49  xwr_def
50 
51 USE modd_surf_par, ONLY : xundef
52 !
53 !
54 USE yomhook ,ONLY : lhook, dr_hook
55 USE parkind1 ,ONLY : jprb
56 !
57 IMPLICIT NONE
58 !
59 !* 0.1 Declarations of arguments
60 ! -------------------------
61 !
62 !
63 !
64 !* 0.2 Declarations of local variables
65 ! -------------------------------
66 !
67 !-------------------------------------------------------------------------------
68 !
69 
70 REAL(KIND=JPRB) :: zhook_handle
71 
72 IF (lhook) CALL dr_hook('DEFAULT_PREP_TEB_GREENROOF',0,zhook_handle)
73  cfile_gr = ' '
74  ctype = 'GRIB '
75  cfilepgd_gr = ' '
76  ctypepgd = 'GRIB '
77  cfile_hug_gr = ' '
78  ctype_hug = ' '
79  cfile_tg_gr = ' '
80  ctype_tg = ' '
81 !
82  cfile_hug_surf_gr = ' '
83  cfile_hug_root_gr = ' '
84  cfile_hug_deep_gr = ' '
85  cfile_tg_surf_gr = ' '
86  cfile_tg_root_gr = ' '
87  cfile_tg_deep_gr = ' '
88 !
89 xhug_surf_gr = xundef
90 xhug_root_gr = xundef
91 xhug_deep_gr = xundef
92 xhugi_surf_gr= 0.
93 xhugi_root_gr= 0.
94 xhugi_deep_gr= 0.
95 xtg_surf_gr = xundef
96 xtg_root_gr = xundef
97 xtg_deep_gr = xundef
98 !
99 xwr_def = 0.
100 !
101 IF (lhook) CALL dr_hook('DEFAULT_PREP_TEB_GREENROOF',1,zhook_handle)
102 !-------------------------------------------------------------------------------
103 !
104 END SUBROUTINE default_prep_teb_greenroof
subroutine default_prep_teb_greenroof