SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
modd_sgh_par.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_sgh_par
7 ! ######################
8 !
9 !!**** *MODD_SGH_PAR* - declaration of SGH parameters
10 !!
11 !! PURPOSE
12 !! -------
13 ! The purpose of this declarative module is to specify the
14 ! parameters related to the SGH scheme (Decharme and Douville,
15 ! Climate Dyn. 2006a).
16 !
17 !!
18 !!
19 !!
20 !! AUTHOR
21 !! ------
22 !! B. Decharme *Meteo France*
23 !!
24 !! MODIFICATIONS
25 !! -------------
26 !-------------------------------------------------------------------------------
27 !
28 !* 0. DECLARATIONS
29 ! ------------
30 !
31 IMPLICIT NONE
32 !
33 !------------------------------------------------------------------------------
34 !
35 INTEGER,PARAMETER :: NDIMTAB = 100
36 !
37 REAL, PARAMETER :: X2 = 2.
38 !
39 REAL, PARAMETER :: X4 = 4.
40 !
41 REAL, PARAMETER :: XF_DECAY = 2.
42 !
43 REAL, PARAMETER :: XICE_DEPH_MAX = 0.2
44 !
45 REAL, PARAMETER :: XREGP = 0.961
46 !
47 REAL, PARAMETER :: XREGA = 1.957
48 !
49 REAL, PARAMETER :: XMTOKM = 1000.
50 !
51 REAL, PARAMETER :: XSTOHR = 3600.
52 !
53 REAL, PARAMETER :: X001 = 0.01
54 !
55 REAL, PARAMETER :: XMUREGP = 0.5
56 !
57 REAL, PARAMETER :: XMUREGA = 0.2
58 !
59 REAL, PARAMETER :: XHORT_DEPTH = 0.1
60 !
61 !--------------------------------------------------------------------------------
62 !
63 END MODULE modd_sgh_par
64 
65 
66 
67 
68 
69 
70 
71 
72 
73 
74 
75