SURFEX v8.1
General documentation of Surfex
modd_get_mesh_index_lonlat_reg.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 reular lon/lat grid characteristics for
10 ! routine get_mesh_index_lonlat_reg
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 :: xlonlim ! longitude left limit of grid mesh (dim ILON+1)
37 REAL, DIMENSION(:), ALLOCATABLE :: xlatlim ! latitude bottom limit of grid mesh (dim ILAT+1)
38 !
39 INTEGER, DIMENSION(:), ALLOCATABLE :: nfracdlon
40 INTEGER, DIMENSION(:), ALLOCATABLE :: nfracdlat
41 !
42 INTEGER :: nlon ! number of points in longitude
43 INTEGER :: nlat ! number of points in latitude
44 REAL :: xlon0 ! centre longitude of the grid
45 !
real, dimension(:), allocatable xlatlim
integer, dimension(:), allocatable nfracdlon
integer, dimension(:), allocatable nfracdlat
real, dimension(:), allocatable xlonlim