SURFEX v8.1
General documentation of Surfex
modd_horibl.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 ! ################
6  MODULE modd_horibl
7 ! ################
8 !
9 !!**** *MODD_HORIBL - declaration for field interpolations
10 !!
11 !! PURPOSE
12 !! -------
13 ! Declaration of surface parameters
14 !
15 !!
16 !!** IMPLICIT ARGUMENTS
17 !! ------------------
18 !! None
19 !!
20 !! REFERENCE
21 !! ---------
22 !!
23 !! AUTHOR
24 !! ------
25 !!
26 !! MODIFICATIONS
27 !! -------------
28 !! Original 01/2004
29 !
30 !* 0. DECLARATIONS
31 ! ------------
32 !
33 IMPLICIT NONE
34 !
35 LOGICAL :: lgloblon=.false., lglobs=.false., lglobn=.false.
36 REAL :: xilo1h=0., xilo2h=0.
37 
38 INTEGER, DIMENSION(:,:), ALLOCATABLE :: no
39 INTEGER, DIMENSION(:), ALLOCATABLE :: ninloh
40 REAL, DIMENSION(:,:), ALLOCATABLE :: xla
41 REAL, DIMENSION(:), ALLOCATABLE :: xola, xolo
42 INTEGER, DIMENSION(:,:), ALLOCATABLE :: np
43 REAL, DIMENSION(:,:), ALLOCATABLE :: xloph
44 !
45 END MODULE modd_horibl
integer, dimension(:), allocatable ninloh
Definition: modd_horibl.F90:39
real, dimension(:), allocatable xola
Definition: modd_horibl.F90:41
integer, dimension(:,:), allocatable np
Definition: modd_horibl.F90:42
logical lgloblon
Definition: modd_horibl.F90:35
integer, dimension(:,:), allocatable no
Definition: modd_horibl.F90:38
logical lglobs
Definition: modd_horibl.F90:35
real, dimension(:), allocatable xolo
Definition: modd_horibl.F90:41
logical lglobn
Definition: modd_horibl.F90:35
real, dimension(:,:), allocatable xla
Definition: modd_horibl.F90:40
real, dimension(:,:), allocatable xloph
Definition: modd_horibl.F90:43