SURFEX v7.3
General documentation of Surfex
|
00001 ! ################ 00002 MODULE MODD_GRID_CARTESIAN 00003 ! ################ 00004 ! 00005 !!**** *MODD_GRID_CARTESIAN - declaration of Arome gris characteristics 00006 !! 00007 !! PURPOSE 00008 !! ------- 00009 ! Used if CINGRID_TYPE = 'CONF PROJ ' 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 20/09/02 00026 ! 00027 !* 0. DECLARATIONS 00028 ! ------------ 00029 ! 00030 IMPLICIT NONE 00031 ! 00032 REAL, DIMENSION(:), ALLOCATABLE :: XX ! X coordinate (meters) 00033 REAL, DIMENSION(:), ALLOCATABLE :: XY ! Y coordinate (meters) 00034 INTEGER :: NX ! number of points in X direction 00035 INTEGER :: NY ! number of points in Y direction 00036 ! 00037 REAL :: XLAT0 ! reference latitude 00038 REAL :: XLON0 ! reference longitude 00039 ! 00040 END MODULE MODD_GRID_CARTESIAN