Changeset 3139 for palm/trunk/SOURCE/init_grid.f90
- Timestamp:
- Jul 17, 2018 11:30:10 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/init_grid.f90
r3115 r3139 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Bugfix in case of restarts and grid stretching 28 ! 29 ! 3115 2018-07-10 12:49:26Z suehring 27 30 ! Referencing of buildings onto top of terrain - special treatment for bridges. 28 31 ! … … 432 435 !-- Determine number of dz values and stretching levels specified by the 433 436 !-- user to allow right controlling of the stretching mechanism and to 434 !-- perform error checks 435 number_dz = COUNT( dz /= -1.0_wp ) 437 !-- perform error checks. The additional requirement that dz /= dz_max 438 !-- for counting number of user-specified dz values is necessary. Otherwise 439 !-- restarts would abort if the old stretching mechanism with dz_stretch_level 440 !-- is used (Attention: The user is not allowed to specify a dz value equal 441 !-- to the default of dz_max = 999.0). 442 number_dz = COUNT( dz /= -1.0_wp .AND. dz /= dz_max) 436 443 number_stretch_level_start = COUNT( dz_stretch_level_start /= & 437 444 -9999999.9_wp )
Note: See TracChangeset
for help on using the changeset viewer.