SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
modd_flake_configure.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 ! File %M% from Library %Q%
6 ! Version %I% from %G% extracted: %H%
7 !------------------------------------------------------------------------------
8 
10 
11 !------------------------------------------------------------------------------
12 !
13 ! Description:
14 !
15 ! Switches and reference values of parameters
16 ! that configure the lake model FLake are set.
17 !
18 !
19 ! Current Code Owner: DWD, Dmitrii Mironov
20 ! Phone: +49-69-8062 2705
21 ! Fax: +49-69-8062 3721
22 ! E-mail: dmitrii.mironov@dwd.de
23 !
24 ! History:
25 ! Version Date Name
26 ! ---------- ---------- ----
27 ! 1.00 2005/11/17 Dmitrii Mironov
28 ! Initial release
29 ! !VERSION! !DATE! <Your name>
30 ! <Modification comments>
31 !
32 ! Code Description:
33 ! Language: Fortran 90.
34 ! Software Standards: "European Standards for Writing and
35 ! Documenting Exchangeable Fortran 90 Code".
36 !==============================================================================
37 !
38 ! Declarations:
39 !
40 ! Modules used:
41 
42 !USE modd_data_parameters , ONLY : &
43 ! ireals , &! KIND-type parameter for real variables
44 ! iintegers ! KIND-type parameter for "normal" integer variables
45 
46 !==============================================================================
47 
48 IMPLICIT NONE
49 
50 !==============================================================================
51 !
52 ! Declarations
53 
54 !---------<Dutra> ----------------------
55 
56 !LOGICAL, PARAMETER :: &
57 ! lflk_botsed_use = .TRUE. ! .TRUE. indicates that the bottom-sediment scheme is used
58  ! to compute the depth penetrated by the thermal wave,
59  ! the temperature at this depth and the bottom heat flux.
60  ! Otherwise, the heat flux at the water-bottom sediment interface
61  ! is set to zero, the depth penetrated by the thermal wave
62  ! is set to a reference value defined below,
63  ! and the temperature at this depth is set to
64  ! the temperature of maximum density of the fresh water.
65 
66 LOGICAL :: &
67  lflk_botsed_use
68 !------------<Dutra> -----------------
69 
70 
71 REAL , PARAMETER :: &
72  rflk_depth_bs_ref = 10.0 ! Reference value of the depth of the thermally active
73  ! layer of bottom sediments [m].
74  ! This value is used to (formally) define
75  ! the depth penetrated by the thermal wave
76  ! in case the bottom-sediment scheme is not used.
77 
78 !==============================================================================
79 
80 END MODULE modd_flake_configure
81