SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
modd_prep.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_prep
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 !! P. Le Moigne 10/2005, Phasage Arome
31 !
32 !* 0. DECLARATIONS
33 ! ------------
34 !
35 IMPLICIT NONE
36 !
37 !--------------------------------------------------------------------------
38 !
39  CHARACTER(LEN=10) :: CINGRID_TYPE ! type of input grid
40  CHARACTER(LEN=6) :: CINTERP_TYPE ! type of interpolation
41  CHARACTER(LEN=6) :: CMASK ! type of surface
42 !
43 LOGICAL, DIMENSION(:), ALLOCATABLE :: LINTERP ! .true. where interpolation must be done
44 !
45 REAL, DIMENSION(:), ALLOCATABLE :: XZS_LS ! Large scale orography interpolated on output grid
46 !
47 REAL, DIMENSION(:), ALLOCATABLE :: XLAT_OUT ! Output grid latitudes
48 REAL, DIMENSION(:), ALLOCATABLE :: XLON_OUT ! Output grid longitudes
49 !
50 REAL, DIMENSION(:), ALLOCATABLE :: XX_OUT ! Output grid 1st coordinate
51 REAL, DIMENSION(:), ALLOCATABLE :: XY_OUT ! Output grid 2nd coordinate
52 !--------------------------------------------------------------------------
53 REAL, PARAMETER :: XT_CLIM_GRAD = -0.0065 ! climatological vertical temperature gradient
54 !--------------------------------------------------------------------------
55 !
56 END MODULE modd_prep