SURFEX v8.1
General documentation of Surfex
Surfex_Git2
src
SURFEX
default_prep_flake.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
SUBROUTINE
default_prep_flake
7
! ###########################
8
!
9
!!**** *DEFAULT_PREP_FLAKE* - routine to set default values for the configuration for FLAKE fields preparation
10
!!
11
!! PURPOSE
12
!! -------
13
!!
14
!!** METHOD
15
!! ------
16
!!
17
!! EXTERNAL
18
!! --------
19
!!
20
!!
21
!! IMPLICIT ARGUMENTS
22
!! ------------------
23
!!
24
!! REFERENCE
25
!! ---------
26
!!
27
!!
28
!! AUTHOR
29
!! ------
30
!! S. Malardel *Meteo France*
31
!!
32
!! MODIFICATIONS
33
!! -------------
34
!! Original 10/2003
35
!-------------------------------------------------------------------------------
36
!
37
!* 0. DECLARATIONS
38
! ------------
39
!
40
USE
modd_prep_flake
, ONLY
:
cfile_flake
,
ctype
,
cfilepgd_flake
,
ctypepgd
,
xts_unif
, &
41
xunif_t_snow
,
xunif_t_ice
,
xunif_t_mnw
,
xunif_t_wml
, &
42
xunif_t_bot
,
xunif_t_b1
,
xunif_ct
,
xunif_h_snow
, &
43
xunif_h_ice
,
xunif_h_ml
,
xunif_h_b1
!, &
44
! XUNIF_T_SNOW_DEF, &
45
! XUNIF_T_ICE_DEF, &
46
! XUNIF_T_MNW_DEF, &
47
! XUNIF_T_WML_DEF, &
48
! XUNIF_T_BOT_DEF, &
49
! XUNIF_T_B1_DEF, &
50
! XUNIF_CT_DEF, &
51
! XUNIF_H_SNOW_DEF, &
52
! XUNIF_H_ICE_DEF, &
53
! XUNIF_H_ML_DEF, &
54
! XUNIF_H_B1_DEF
55
!
56
USE
modn_prep_flake
, ONLY
:
lwat_sbl
, lclim_lake
57
!
58
USE
modd_surf_par
, ONLY
:
xundef
59
!
60
!
61
USE
yomhook
,ONLY
:
lhook
,
dr_hook
62
USE
parkind1
,ONLY
:
jprb
63
!
64
IMPLICIT NONE
65
!
66
!* 0.1 Declarations of arguments
67
! -------------------------
68
!
69
!
70
!
71
!* 0.2 Declarations of local variables
72
! -------------------------------
73
!
74
!-------------------------------------------------------------------------------
75
!
76
77
REAL(KIND=JPRB)
:: ZHOOK_HANDLE
78
79
IF
(
lhook
)
CALL
dr_hook
(
'DEFAULT_PREP_FLAKE'
,0,zhook_handle)
80
CFILE_FLAKE = ' '
81
CTYPE = ' '
82
!
83
CFILEPGD_FLAKE = ' '
84
CTYPEPGD = ' '
85
!
86
xts_unif
=
xundef
87
xunif_t_snow
=
xundef
88
xunif_t_ice
=
xundef
89
xunif_t_mnw
=
xundef
90
xunif_t_wml
=
xundef
91
xunif_t_bot
=
xundef
92
xunif_t_b1
=
xundef
93
xunif_ct
=
xundef
94
xunif_h_snow
=
xundef
95
xunif_h_ice
=
xundef
96
xunif_h_ml
=
xundef
97
xunif_h_b1
=
xundef
98
99
lclim_lake = .false.
100
lwat_sbl
= .false.
101
IF
(
lhook
)
CALL
dr_hook
(
'DEFAULT_PREP_FLAKE'
,1,zhook_handle)
102
!XUNIF_T_SNOW_DEF =
103
!XUNIF_T_ICE_DEF =
104
!XUNIF_T_MNW_DEF =
105
!XUNIF_T_WML_DEF =
106
!XUNIF_T_BOT_DEF =
107
!XUNIF_T_B1_DEF =
108
!XUNIF_CT_DEF =
109
!XUNIF_H_SNOW_DEF =
110
!XUNIF_H_ICE_DEF =
111
!XUNIF_H_ML_DEF =
112
!XUNIF_H_B1_DEF =
113
!-------------------------------------------------------------------------------
114
!
115
END SUBROUTINE
default_prep_flake
modd_surf_par
Definition:
modd_surf_par.F90:6
yomhook::dr_hook
Definition:
yomhook.F90:20
modd_prep_flake::xunif_h_ice
real xunif_h_ice
Definition:
modd_prep_flake.F90:55
modd_prep_flake::xunif_t_snow
real xunif_t_snow
Definition:
modd_prep_flake.F90:47
modd_prep_flake::xunif_t_mnw
real xunif_t_mnw
Definition:
modd_prep_flake.F90:49
modd_prep_flake::xunif_h_snow
real xunif_h_snow
Definition:
modd_prep_flake.F90:54
modn_prep_flake
Definition:
modn_prep_flake.F90:6
modd_prep_flake::xunif_h_b1
real xunif_h_b1
Definition:
modd_prep_flake.F90:57
modd_prep_flake::ctypepgd
character(len=6) ctypepgd
Definition:
modd_prep_flake.F90:42
modd_surf_par::xundef
real, parameter xundef
Definition:
modd_surf_par.F90:43
parkind1::jprb
integer, parameter jprb
Definition:
parkind1.F90:32
modd_prep_flake::cfilepgd_flake
character(len=28) cfilepgd_flake
Definition:
modd_prep_flake.F90:41
modd_prep_flake::ctype
character(len=6) ctype
Definition:
modd_prep_flake.F90:40
yomhook::lhook
logical lhook
Definition:
yomhook.F90:15
modd_prep_flake::xunif_h_ml
real xunif_h_ml
Definition:
modd_prep_flake.F90:56
modd_prep_flake
Definition:
modd_prep_flake.F90:6
default_prep_flake
subroutine default_prep_flake
Definition:
default_prep_flake.F90:7
parkind1
Definition:
parkind1.F90:1
modd_prep_flake::xts_unif
real xts_unif
Definition:
modd_prep_flake.F90:44
modd_prep_flake::xunif_t_bot
real xunif_t_bot
Definition:
modd_prep_flake.F90:51
modd_prep_flake::xunif_ct
real xunif_ct
Definition:
modd_prep_flake.F90:53
modd_prep_flake::xunif_t_b1
real xunif_t_b1
Definition:
modd_prep_flake.F90:52
modd_prep_flake::xunif_t_ice
real xunif_t_ice
Definition:
modd_prep_flake.F90:48
modn_prep_flake::lwat_sbl
logical lwat_sbl
Definition:
modn_prep_flake.F90:56
modd_prep_flake::xunif_t_wml
real xunif_t_wml
Definition:
modd_prep_flake.F90:50
yomhook
Definition:
yomhook.F90:1
modd_prep_flake::cfile_flake
character(len=28) cfile_flake
Definition:
modd_prep_flake.F90:39
Generated on Tue Jan 16 2018 16:23:28 for SURFEX v8.1 by
1.8.13