Changes between Version 11 and Version 12 of doc/tec/topography
- Timestamp:
- Jun 6, 2017 2:58:41 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
doc/tec/topography
v11 v12 279 279 #!Latex 280 280 \begin{verbatim} 281 ALLOCATE ( surf_def_h(0)%i(1:surf_def_h(0)%ns) ) !< allocate i index282 ALLOCATE ( surf_def_h(0)%j(1:surf_def_h(0)%ns) ) !< allocate j index283 ALLOCATE ( surf_def_h(0)%k(1:surf_def_h(0)%ns) ) !< allocate k index284 ALLOCATE ( surf_def_h(0)%shf(1:surf_def_h(0)%ns) ) !< allocate heat flux281 ALLOCATE ( surf_def_h(0)%i(1:surf_def_h(0)%ns) ) 282 ALLOCATE ( surf_def_h(0)%j(1:surf_def_h(0)%ns) ) 283 ALLOCATE ( surf_def_h(0)%k(1:surf_def_h(0)%ns) ) 284 ALLOCATE ( surf_def_h(0)%shf(1:surf_def_h(0)%ns) ) 285 285 \end{verbatim} 286 286 }}} … … 313 313 }}} 314 314 Summarized, the surface data-structure {{{surf_type}}} is used to store and access all surface related quantities in an optimized memory demand. Several adjoining surfaces at a grid cell (e.g. at corners) are treated separately. The new data-structure is also applied in the flat case without any topography. 315 316 '''Some notes''': So far, downward-facing walls are only realized for default surface type.317