SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
modd_get_mesh_index_conf_proj.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_conf_proj
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 :: XLAT0 ! reference latitude
37 REAL :: XLON0 ! reference longitude
38 REAL :: XRPK ! projection parameter
39 ! ! K=1 : stereographic north pole
40 ! ! 0<K<1 : Lambert, north hemisphere
41 ! ! K=0 : Mercator
42 ! !-1<K<0 : Lambert, south hemisphere
43 ! ! K=-1: stereographic south pole
44 REAL :: XBETA ! angle between grid and reference longitude
45 REAL :: XLATOR ! latitude of point of coordinates X=0, Y=0
46 REAL :: XLONOR ! longitude of point of coordinates X=0, Y=0
47 INTEGER :: NIMAX ! number of points in I direction
48 INTEGER :: NJMAX ! number of points in J direction
49 !
50 REAL, DIMENSION(:), ALLOCATABLE :: XXLIM ! X left limit of grid mesh (dim IIMAX+1)
51 REAL, DIMENSION(:), ALLOCATABLE :: XYLIM ! Y bottom limit of grid mesh (dim IJMAX+1)
52