SURFEX v7.3
General documentation of Surfex
 All Classes Files Functions Variables Typedefs
/home/dasprezs/EXPORT_v7_3/src/SURFEX/modd_data_cover_par.F90
Go to the documentation of this file.
00001 !     ######################
00002       MODULE MODD_DATA_COVER_PAR
00003 !     ######################
00004 !
00005 !!****  *MODD_DATA_COVER_PAR* - declaration of prognostic variables related
00006 !!                          to the ground parameterization
00007 !!
00008 !!    PURPOSE
00009 !!    -------
00010 !       The purpose of this declarative module is to specify  the 
00011 !     parameters related to the surface parameterization interface.
00012 !
00013 !!
00014 !!**  IMPLICIT ARGUMENTS
00015 !!    ------------------
00016 !!      None 
00017 !!
00018 !!    REFERENCE
00019 !!    ---------
00020 !!      
00021 !!
00022 !!    AUTHOR
00023 !!    ------
00024 !!      S. Belair   *Meteo France*
00025 !!
00026 !!    MODIFICATIONS
00027 !!    -------------
00028 !!      Original       29/04/95                      
00029 !!      (V.Masson)     05/10/98+ add XCDZ0EFF, XRHOSMIN, XRHOSMAX
00030 !!      (V.Masson)     15/03/99 add number of layers
00031 !!      (A.Boone)      02/05/02 add ISBA-ES parameters
00032 !-------------------------------------------------------------------------------
00033 !
00034 !*       0.   DECLARATIONS
00035 !             ------------
00036 !
00037 IMPLICIT NONE
00038 !
00039 !------------------------------------------------------------------------------
00040 !
00041 ! Maximum number of cover classes
00042 INTEGER, PARAMETER    :: JPCOVER  = 573
00043 !last class number of EUROPE
00044 INTEGER, PARAMETER    :: NCOVER_ECO1_END    = 255
00045 !firt class number of EUROPE
00046 INTEGER, PARAMETER    :: NCOVER_ECO2_START  = 301
00047 !
00048 INTEGER                                :: NVEGTYPE
00049 ! number of vegetation types
00050 !
00051 INTEGER                                :: NVT_C4
00052 INTEGER                                :: NVT_TREE
00053 INTEGER                                :: NVT_CONI
00054 INTEGER                                :: NVT_EVER
00055 INTEGER                                :: NVT_GRAS
00056 INTEGER                                :: NVT_TROG
00057 INTEGER                                :: NVT_C3
00058 INTEGER                                :: NVT_NO
00059 INTEGER                                :: NVT_ROCK
00060 INTEGER                                :: NVT_SNOW
00061 INTEGER                                :: NVT_IRR
00062 INTEGER                                :: NVT_PARK
00063 ! indexes of these types (C4 cultures types, Broadleaf TREEs, CONIferous trees,
00064 !                         EVERgreen broadleaf trees, GRASsland, TROpical Grass,
00065 !                         C3 CULTures types, NO vegetation, ROCKs,
00066 !                         IRRigated crops, irrigated PARKs gardens or peat bogs)
00067 !
00068 !---------------------------------------------------------------------------------
00069 !
00070 ! Ecosystem corresponding to bare soil or permanent snow
00071 !
00072 INTEGER                                :: NBARE_SOIL
00073 INTEGER                                :: NROCK
00074 INTEGER                                :: NPERMSNOW
00075 !--------------------------------------------------------------------------------- 
00076 !
00077 ! Free water bodies
00078 !
00079 INTEGER, DIMENSION(2)                  :: NSEA
00080 INTEGER, DIMENSION(3)                  :: NWATER
00081 !
00082 !---------------------------------------------------------------------------------
00083 !
00084 ! maximum number of tiles used at any grid point
00085 !
00086 INTEGER                                :: NTILESFC = 4
00087 !
00088 !---------------------------------------------------------------------------------
00089 !
00090 !* building layers in the ecoclimap data
00091 !
00092 INTEGER                                :: NDATA_ROOF_LAYER
00093 INTEGER                                :: NDATA_ROAD_LAYER
00094 INTEGER                                :: NDATA_WALL_LAYER
00095 INTEGER                                :: NDATA_FLOOR_LAYER
00096 !
00097 !---------------------------------------------------------------------------------
00098 !* names of all ecosystems
00099 !
00100  CHARACTER(LEN=60), DIMENSION(JPCOVER,2) :: CNAMES
00101 !---------------------------------------------------------------------------------
00102 !
00103 ! reference height for CDN averaging
00104 !
00105 REAL                                :: XCDREF = 20.
00106 !
00107 !---------------------------------------------------------------------------------
00108 END MODULE MODD_DATA_COVER_PAR
00109 
00110 
00111 
00112 
00113 
00114 
00115 
00116 
00117 
00118 
00119 
00120