SURFEX v7.3
General documentation of Surfex
|
00001 ! ################## 00002 MODULE MODN_PGD_SCHEMES 00003 ! ################## 00004 ! 00005 !! 00006 !! PURPOSE 00007 !! ------- 00008 ! 00009 !! 00010 !!** IMPLICIT ARGUMENTS 00011 !! ------------------ 00012 !! 00013 !! REFERENCE 00014 !! --------- 00015 !! 00016 !! 00017 !! AUTHOR 00018 !! ------ 00019 !! V. Masson *Meteo France* 00020 !! 00021 !! MODIFICATIONS 00022 !! ------------- 00023 !! Original 10/2003 00024 !! 00025 !! A. Lemonsu 05/2009 Key for vegetation in TEB (TEB-Veg) 00026 !------------------------------------------------------------------------------- 00027 ! 00028 !* 0. DECLARATIONS 00029 ! ------------ 00030 ! 00031 IMPLICIT NONE 00032 ! 00033 CHARACTER(LEN=6) :: CNATURE ! type of scheme for natural covers: NONE, ISBA 00034 CHARACTER(LEN=6) :: CSEA ! type of scheme for oceans : NONE, CSEAFLX 00035 CHARACTER(LEN=6) :: CTOWN ! type of scheme for towns : NONE, CTEB 00036 CHARACTER(LEN=6) :: CWATER ! type of scheme for inland waters : NONE, WATFLX, FLAKE 00037 LOGICAL :: LGARDEN ! T : urban green areas treated inside TOWN by CTOWN scheme 00038 ! ! F : urban greenareas treated inside NATURE aggregated 00039 ! ! with other vegetated surfaces 00040 ! 00041 NAMELIST/NAM_PGD_SCHEMES/CNATURE, CSEA, CTOWN, CWATER, LGARDEN 00042 ! 00043 END MODULE MODN_PGD_SCHEMES