SURFEX v8.1
General documentation of Surfex
Surfex_Git2
src
SURFEX
modd_prep_teb_garden.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
modd_prep_teb_garden
7
! ################
8
!
9
!!**** *MODD_PREP - declaration for field interpolations
10
!!
11
!! PURPOSE
12
!! -------
13
! Declaration of surface parameters
14
!
15
!!
16
!!** IMPLICIT ARGUMENTS
17
!! ------------------
18
!! None
19
!!
20
!! REFERENCE
21
!! ---------
22
!!
23
!! AUTHOR
24
!! ------
25
!! V. Masson *Meteo France*
26
!!
27
!! MODIFICATIONS
28
!! -------------
29
!! Original 01/2004
30
!
31
!* 0. DECLARATIONS
32
! ------------
33
!
34
IMPLICIT NONE
35
!
36
SAVE
37
!--------------------------------------------------------------------------
38
!
39
CHARACTER(LEN=28)
:: cfile_gd
! input file name
40
CHARACTER(LEN=6)
:: ctype
! input file type
41
CHARACTER(LEN=28)
:: cfilepgd_gd
! input file name
42
CHARACTER(LEN=6)
:: ctypepgd
! input file type
43
CHARACTER(LEN=28)
:: cfile_snow_gd
! input file name for Snow
44
CHARACTER(LEN=6)
:: ctype_snow
! input file type for Snow
45
CHARACTER(LEN=28)
:: cfilepgd_snow_gd
! input file name for Snow
46
CHARACTER(LEN=6)
:: ctypepgd_snow
! input file type for Snow
47
CHARACTER(LEN=28)
:: cfile_hug_gd
! input file name for Wg, Wgi
48
CHARACTER(LEN=6)
:: ctype_hug
! input file type for Wg, Wgi
49
CHARACTER(LEN=28)
:: cfile_tg_gd
! input file name for Tg
50
CHARACTER(LEN=6)
:: ctype_tg
! input file type for Tg
51
CHARACTER(LEN=28)
:: cfile_hug_surf_gd
! input file name for HUG_SURF
52
CHARACTER(LEN=28)
:: cfile_hug_root_gd
! input file name for HUG_ROOT
53
CHARACTER(LEN=28)
:: cfile_hug_deep_gd
! input file name for HUG_DEEP
54
CHARACTER(LEN=28)
:: cfile_tg_surf_gd
! input file name for TG_SURF
55
CHARACTER(LEN=28)
:: cfile_tg_root_gd
! input file name for TG_ROOT
56
CHARACTER(LEN=28)
:: cfile_tg_deep_gd
! input file name for TG_DEEP
57
!
58
REAL
:: xhug_surf_gd
! surface relative soil humidity
59
REAL
:: xhug_root_gd
! root layer relative soil humidity
60
REAL
:: xhug_deep_gd
! deep layer relative soil humidity
61
REAL
:: xhugi_surf_gd
! surf layer relative ice content
62
REAL
:: xhugi_root_gd
! root layer relative ice content
63
REAL
:: xhugi_deep_gd
! deep layer relative ice content
64
REAL
:: xtg_surf_gd
! surface temperature
65
REAL
:: xtg_root_gd
! root layer temperature
66
REAL
:: xtg_deep_gd
! deep layer temperature
67
!
68
LOGICAL
:: lsnow_ideal_gd
69
!
70
REAL
,
DIMENSION(:)
,
POINTER
:: xwsnow_gd
! Snow reservoir
71
REAL
,
DIMENSION(:)
,
POINTER
:: xrsnow_gd
! snow density
72
REAL
,
DIMENSION(:)
,
POINTER
:: xtsnow_gd
! snow temperature
73
REAL
,
DIMENSION(:)
,
POINTER
:: xagesnow_gd
! snow age
74
REAL
,
DIMENSION(:)
,
POINTER
:: xlwcsnow_gd
! snow liquid water content
75
REAL
:: xasnow_gd
! snow albedo
76
!
77
REAL
:: xwr_def
! default for leaves interception reservoir
78
!--------------------------------------------------------------------------
79
!
80
!* dimensions for interpolation grids for soil
81
INTEGER
,
PARAMETER
:: ngrid_level = 22
82
REAL
,
DIMENSION(NGRID_LEVEL)
:: xgrid_soil = &
83
(/0.01,0.04,0.10,0.20,0.40,0.60,0.80,1.0,1.25,1.5,1.75,2.0,2.5,3.0
,4.0,5.0,8.00,12.0,17.,23.,30.,100./)
84
!
85
!--------------------------------------------------------------------------
86
!
87
END MODULE
modd_prep_teb_garden
88
89
Generated on Tue Jan 16 2018 16:23:29 for SURFEX v8.1 by
1.8.13