SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
modd_reprod_oper.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 !!**** *MODD_REPROD_OPER* - declaration of ISBA parameters
10 !!
11 !! PURPOSE
12 !! -------
13 ! The purpose of this declarative module is to specify temporary
14 ! old parameters related to the surface parameterization ISBA
15 ! to ensure reproductibility with previous oper cycle
16 !
17 !!
18 !!
19 !!
20 !! AUTHOR
21 !! ------
22 !! B. Decharme *Meteo France*
23 !!
24 !! MODIFICATIONS
25 !! -------------
26 !! Original 04/2013
27 !-------------------------------------------------------------------------------
28 !
29 !* 0. DECLARATIONS
30 ! ------------
31 !
32 IMPLICIT NONE
33 !
34 !------------------------------------------------------------------------------------
35 ! Old global ISBA param temporary activated in NAM_SURF_REPROD_OPER (for reproductibility)
36 !------------------------------------------------------------------------------------
37 !
38 ! * Tropical evergreen forest parameter
39 !
40 !XEVERG_RSMIN : old = 250. (Manzi 1993) but observations range
41 ! from 140 to 180. According to Delire et al. (1997) and
42 ! new tests over 6 local sites, 175. is recommended
43 ! Should be the default after check with AROME/ALADIN
44 !
45 REAL :: XEVERG_RSMIN
46 !
47 !XEVERG_VEG : old = 0.99 (Manzi 1993) but according to Delire et al. (1997) and
48 ! new tests over 6 local sites, 1.0 is recommended because 0.99
49 ! induces unrealistic bare soil evaporation for Tropical forest
50 ! Should be the default after check with AROME/ALADIN
51 !
52 REAL :: XEVERG_VEG
53 !
54 ! * Soil depth average
55 !
56 !CDGAVG : old = 'ARI' Arithmetic average for all depths
57 ! recommended = 'INV' Harmonic average for all depths
58 !
59  CHARACTER(LEN=3) :: CDGAVG
60 !
61 ! * Soil depth with ISBA-DF
62 !
63 !CDGDIF : old = 'SOIL' Total soil depth (d3) in Ecoclimap
64 ! recommended = 'ROOT' Root depth (d2) in Ecoclimap
65 !
66  CHARACTER(LEN=4) :: CDGDIF
67 !
68 ! * wind implicitation
69 !
70  CHARACTER(LEN=3) :: CIMPLICIT_WIND ! wind implicitation option
71 ! ! 'OLD' = direct
72 ! ! 'NEW' = Taylor serie, order 1 (recommended)
73 !
74 ! * qsat computation
75 !
76  CHARACTER(LEN=3) :: CQSAT ! qsat computation option
77 ! ! 'OLD' = do not depend on temperature
78 ! ! 'NEW' = qsat and qsati merged (recommended)
79 !
80 ! * Charnock parameter
81 !
82  CHARACTER(LEN=3) :: CCHARNOCK ! Charnock parameter option
83 ! ! 'OLD' = constant equal to XVCHRNK
84 ! ! 'NEW' = vary between 0.011 et 0.018 according
85 ! ! to Chris Fairall's data as in coare3.0
86 ! ! (recommended)
87 !
88 !--------------------------------------------------------------------------------
89 !
90 END MODULE modd_reprod_oper
91 
92 
93 
94 
95 
96 
97 
98 
99 
100 
101 
102