Changeset 3222 for palm/trunk/SOURCE/surface_mod.f90
- Timestamp:
- Aug 30, 2018 1:35:35 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/surface_mod.f90
r3176 r3222 26 26 ! ----------------- 27 27 ! $Id$ 28 ! +building_type, pavement_type, vegetation_type, water_type 29 ! +building_type_name, pavement_type_name, vegetation_type_name, water_type_name 30 ! 31 ! 3176 2018-07-26 17:12:48Z suehring 28 32 ! Bugfix in restarts for surface elements. 29 33 ! … … 290 294 ! 291 295 !-- Variables required for LSM as well as for USM 292 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: nzt_pavement !< top index for pavement in soil 296 CHARACTER(LEN=40), DIMENSION(:), ALLOCATABLE :: building_type_name !< building type name at surface element 297 CHARACTER(LEN=40), DIMENSION(:), ALLOCATABLE :: pavement_type_name !< pavement type name at surface element 298 CHARACTER(LEN=40), DIMENSION(:), ALLOCATABLE :: vegetation_type_name !< water type at name surface element 299 CHARACTER(LEN=40), DIMENSION(:), ALLOCATABLE :: water_type_name !< water type at name surface element 300 301 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: nzt_pavement !< top index for pavement in soil 302 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: building_type !< building type at surface element 303 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: pavement_type !< pavement type at surface element 304 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: vegetation_type !< vegetation type at surface element 305 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: water_type !< water type at surface element 306 293 307 INTEGER(iwp), DIMENSION(:,:), ALLOCATABLE :: albedo_type !< albedo type, for each fraction (wall,green,window or vegetation,pavement water) 294 308 … … 298 312 LOGICAL, DIMENSION(:), ALLOCATABLE :: water_surface !< flag parameter for water surfaces 299 313 LOGICAL, DIMENSION(:), ALLOCATABLE :: vegetation_surface !< flag parameter for natural land surfaces 300 314 301 315 REAL(wp), DIMENSION(:,:), ALLOCATABLE :: albedo !< broadband albedo for each surface fraction (LSM: vegetation, water, pavement; USM: wall, green, window) 302 316 REAL(wp), DIMENSION(:,:), ALLOCATABLE :: emissivity !< emissivity of the surface, for each fraction (LSM: vegetation, water, pavement; USM: wall, green, window)
Note: See TracChangeset
for help on using the changeset viewer.