SURFEX v7.3
General documentation of Surfex
 All Classes Files Functions Variables Typedefs
/home/dasprezs/EXPORT_v7_3/src/SURFEX/modd_grid_arome.F90
Go to the documentation of this file.
00001 !     ################
00002       MODULE MODD_GRID_AROME
00003 !     ################
00004 !
00005 !!****  *MODD_GRID_AROME - declaration of Arome grid characteristics
00006 !!
00007 !!    PURPOSE
00008 !!    -------
00009 !     Used if CINGRID_TYPE = 'AROME '
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       01/2004
00026 !
00027 !*       0.   DECLARATIONS
00028 !             ------------
00029 !
00030 IMPLICIT NONE
00031 !
00032 REAL    :: XX  ! total physical size in X direction (meters)
00033 REAL    :: XY  ! total physical size in Y direction (meters)
00034 INTEGER :: NX  ! dimension in X direction           (number of points)
00035 INTEGER :: NY  ! dimension in Y direction           (number of points)
00036 !
00037 REAL    :: XLAT0  ! reference latitude
00038 REAL    :: XLON0  ! reference longitude
00039 REAL    :: XLATOR ! origin latitude
00040 REAL    :: XLONOR ! origin longitude
00041 REAL    :: XRPK   ! projection parameter for the conformal projection
00042 REAL    :: XBETA  ! rotation   parameter for the conformal projection
00043 !
00044 END MODULE MODD_GRID_AROME