SURFEX v7.3
General documentation of Surfex
 All Classes Files Functions Variables Typedefs
/home/dasprezs/EXPORT_v7_3/src/SURFEX/modd_get_mesh_index_ign.F90
Go to the documentation of this file.
00001 !     ##############################
00002 MODULE MODD_GET_MESH_INDEX_IGN
00003 !     ##############################
00004 !
00005 !!****  *MODD_GRID_GAUSS - declaration of conformal grid characteristics for
00006 !                          routine get_mesh_index_IGN
00007 !!
00008 !!    PURPOSE
00009 !!    -------
00010 !
00011 !!
00012 !!**  IMPLICIT ARGUMENTS
00013 !!    ------------------
00014 !!      None 
00015 !!
00016 !!    REFERENCE
00017 !!    ---------
00018 !!
00019 !!    AUTHOR
00020 !!    ------
00021 !!      V. Masson    *Meteo France*
00022 !!
00023 !!    MODIFICATIONS
00024 !!    -------------
00025 !!      Original       10/2006
00026 !
00027 IMPLICIT NONE
00028 !
00029 !*       0.   DECLARATIONS
00030 !             ------------
00031 !
00032 REAL, DIMENSION(:), ALLOCATABLE   :: XXLIM    ! X left   limit of grid mesh
00033 REAL, DIMENSION(:), ALLOCATABLE   :: XYLIM    ! Y bottom limit of grid mesh
00034 REAL, DIMENSION(:), ALLOCATABLE   :: XDX      ! X size of grid mesh
00035 REAL, DIMENSION(:), ALLOCATABLE   :: XDY      ! Y size of grid mesh
00036 REAL                              :: XX_MIN   ! minimum X of the whole grid
00037 REAL                              :: XX_MAX   ! maximum X of the whole grid
00038 REAL                              :: XY_MIN   ! minimum Y of the whole grid
00039 REAL                              :: XY_MAX   ! maximum Y of the whole grid
00040 
00041 END MODULE MODD_GET_MESH_INDEX_IGN