SURFEX v8.1
General documentation of Surfex
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
character(len=10) cingrid_type
Definition: modd_prep.F90:39
real, dimension(:), allocatable xlon_out
Definition: modd_prep.F90:48
real, dimension(:), allocatable xzs_ls
Definition: modd_prep.F90:45
character(len=6) cmask
Definition: modd_prep.F90:41
real, dimension(:), allocatable xy_out
Definition: modd_prep.F90:51
character(len=6) cinterp_type
Definition: modd_prep.F90:40
logical, dimension(:), allocatable linterp
Definition: modd_prep.F90:43
real, dimension(:), allocatable xlat_out
Definition: modd_prep.F90:47
real, dimension(:), allocatable xx_out
Definition: modd_prep.F90:50
real, parameter xt_clim_grad
Definition: modd_prep.F90:53