SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
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
subroutine default_prep_flake