SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
default_slt.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_slt
7 ! ########################################################################
8 !
9 !!**** *DEFAULT_SLT* - routine to set default values for the configuration for SLT
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 !! Alf Grini CNRM
31 !!
32 !! MODIFICATIONS
33 !! -------------
34 !! Original 03/2005
35 !-------------------------------------------------------------------------------
36 !
37 !* 0. DECLARATIONS
38 ! ------------
39 !
40 !
41 USE modd_slt_surf, ONLY : cemisparam_slt, jpmode_slt, lvarsig_slt, lrgfix_slt
42 !
43 USE yomhook ,ONLY : lhook, dr_hook
44 USE parkind1 ,ONLY : jprb
45 !
46 IMPLICIT NONE
47 !
48 !-------------------------------------------------------------------------------
49 !
50 ! Set initial values of variables. These are modified by namelist
51 !
52 REAL(KIND=JPRB) :: zhook_handle
53 !
54 IF (lhook) CALL dr_hook('DEFAULT_SLT',0,zhook_handle)
55  cemisparam_slt = 'Vig01'
56 jpmode_slt = 3
57 lvarsig_slt = .false.
58 lrgfix_slt = .true.
59 IF (lhook) CALL dr_hook('DEFAULT_SLT',1,zhook_handle)
60 !-------------------------------------------------------------------------------
61 !
62 END SUBROUTINE default_slt
subroutine default_slt
Definition: default_slt.F90:6