SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
modd_get_mesh_index_lonlatval.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_GRID_GAUSS - declaration of conformal grid characteristics for
10 ! routine get_mesh_index_IGN
11 !!
12 !! PURPOSE
13 !! -------
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 10/2006
30 !
31 IMPLICIT NONE
32 !
33 !* 0. DECLARATIONS
34 ! ------------
35 !
36 REAL, DIMENSION(:), ALLOCATABLE :: XXLIM ! X left limit of grid mesh
37 REAL, DIMENSION(:), ALLOCATABLE :: XYLIM ! Y bottom limit of grid mesh
38 REAL, DIMENSION(:), ALLOCATABLE :: XXLIMS ! X left limit of grid mesh
39 INTEGER, DIMENSION(:), ALLOCATABLE :: NXIDS
40 INTEGER, DIMENSION(:), ALLOCATABLE :: NFRACD
41 REAL, DIMENSION(:), ALLOCATABLE :: XDX ! X size of grid mesh
42 REAL, DIMENSION(:), ALLOCATABLE :: XDY ! Y size of grid mesh
43 REAL :: XX_MIN ! minimum X of the whole grid
44 REAL :: XX_MAX ! maximum X of the whole grid
45 REAL :: XY_MIN ! minimum Y of the whole grid
46 REAL :: XY_MAX ! maximum Y of the whole grid
47 REAL :: XDX_MAX ! maximum X of the whole grid
48