SURFEX v7.3
General documentation of Surfex
 All Classes Files Functions Variables Typedefs
/home/dasprezs/EXPORT_v7_3/src/SURFEX/modd_ver_interp_lin_surf.F90
Go to the documentation of this file.
00001 !     ##########################
00002       MODULE MODD_VER_INTERP_LIN_SURF
00003 !     ##########################
00004 !
00005 !!****  *MODD_VER_INTERP_LIN* - declaration of linear vertical interpolation
00006 !!                              coefficients
00007 !!
00008 !!    PURPOSE
00009 !!    -------
00010 !!
00011 !!
00012 !!**  IMPLICIT ARGUMENTS
00013 !!    ------------------
00014 !!      None 
00015 !!
00016 !!    REFERENCE
00017 !!    ---------
00018 !!      Book2 of documentation of Meso-NH (module MODD_VER_INTERP_LIN)
00019 !!      
00020 !!
00021 !!    AUTHOR
00022 !!    ------
00023 !!      V. Masson   *Meteo France*
00024 !!
00025 !!    MODIFICATIONS
00026 !!    -------------
00027 !!      Original    18/07/97
00028 !-------------------------------------------------------------------------------
00029 !
00030 !*       0.   DECLARATIONS
00031 !             ------------
00032 !
00033 IMPLICIT NONE
00034 !
00035 INTEGER, DIMENSION(:,:,:), ALLOCATABLE :: NKLIN      ! level in grid1 just below
00036                                                      ! level in grid2
00037                                                      ! (level for which XCOEFLIN
00038                                                      !  is computed)
00039 REAL,    DIMENSION(:,:,:), ALLOCATABLE :: XCOEFLIN   ! interpolating coefficient
00040                                                      ! 0< <1 : interpolation
00041                                                      !    <0 : extrapolation up
00042                                                      ! 1<    : extrapolation down
00043 !-------------------------------------------------------------------------------
00044 !
00045 END MODULE MODD_VER_INTERP_LIN_SURF