SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
modd_topd_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 ! ######################
7  MODULE modd_topd_par
8 ! ######################
9 !
10 !!**** *MODD_TOPD_PAR* - declaration of parameter variables
11 !!
12 !! PURPOSE
13 !! -------
14 ! The purpose of this declarative module is to specify the variables
15 ! which have the PARAMETER attribute
16 !
17 !!
18 !!** IMPLICIT ARGUMENTS
19 !! ------------------
20 !! None
21 !!
22 !! REFERENCE
23 !! ---------
24 !! Book2 of documentation of Meso-NH (module MODD_PARAMETER)
25 !!
26 !! AUTHOR
27 !! ------
28 !! V. Ducrocq *Meteo France*
29 !!
30 !! MODIFICATIONS
31 !! -------------
32 !! Original 4/07/94
33 !! Modification 10/03/95 (I.Mallet) add the coupling files maximum number
34 !! Modification 10/04/95 (Ph. Hereil) add the budget related informations
35 !-------------------------------------------------------------------------------
36 !
37 !* 0. DECLARATIONS
38 ! ------------
39 !
40 IMPLICIT NONE
41 !
42 REAL, PARAMETER :: XSTEPK = 0.05 ! discretization step of the saturation
43  ! index KAPPA
44 INTEGER, PARAMETER :: NDIM = 20 ! dimension of the XCONN array third
45  ! index
46 INTEGER, PARAMETER :: JPCAT = 10 ! number max of catchments
47 !
48 INTEGER :: NUNIT = 19
49 !
50 !values for each catchment
51 REAL, DIMENSION(JPCAT) :: XF_PARAM_BV
52 REAL, DIMENSION(JPCAT) :: XC_DEPTH_RATIO_BV
53 !
54 END MODULE modd_topd_par