SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
modd_prep_snow.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 ! ################
7 ! ################
8 !
9 !!**** *MODD_PREP - declaration for field interpolations
10 !!
11 !! PURPOSE
12 !! -------
13 ! Declaration of surface parameters
14 !
15 !!
16 !!** IMPLICIT ARGUMENTS
17 !! ------------------
18 !! None
19 !!
20 !! REFERENCE
21 !! ---------
22 !!
23 !! AUTHOR
24 !! ------
25 !! V. Masson *Meteo France*
26 !!
27 !! MODIFICATIONS
28 !! -------------
29 !! Original 01/2004
30 !! Modif M Lafaysse 04/2014 : LSNOW_PREP_PERM
31 !
32 !* 0. DECLARATIONS
33 ! ------------
34 !
35 USE modd_snow_par
36 !
37 IMPLICIT NONE
38 !
39 !--------------------------------------------------------------------------
40 !
41 !* climatological gradient for vertical extrapolations of snow content
42 ! a rate of 8cm of snow per degree below 0 C is chosen for these mountain tops
43 ! (climatology from Etchevers 2000 in the Alps and the Jura mountains).
44 !
45 REAL, PARAMETER :: XWSNOW_CLIM_GRAD = - 0.08 * 300. * (-0.0065)
46 !
47 !--------------------------------------------------------------------------
48 ! Parameters for snow field uniforn initialization
49 !
50 LOGICAL :: LSNOW_FRAC_TOT
51 INTEGER, PARAMETER :: NSNOW_LAYER_MAX = 50
52 LOGICAL :: LSNOW_PREP_PERM ! activate or disactivate initialization over permanent ice areas
53 !
54 !--------------------------------------------------------------------------
55 !
56 !* normalized dimensions for interpolation grids for soil
57 INTEGER, PARAMETER :: NGRID_LEVEL = 40
58 REAL, DIMENSION(NGRID_LEVEL) :: XGRID_SNOW = &
59 (/0.01,0.02,0.03,0.04,0.05,0.06,0.08,0.10,0.12,0.14,&
60  0.16,0.18,0.21,0.25,0.30,0.35,0.40,0.45,0.50,0.55,&
61  0.60,0.65,0.70,0.75,0.80,0.85,0.87,0.88,0.89,0.90,&
62  0.91,0.92,0.93,0.94,0.95,0.96,0.97,0.98,0.99,1.00/)
63 
64 !--------------------------------------------------------------------------
65 !
66 END MODULE modd_prep_snow