Changeset 3139
- Timestamp:
- Jul 17, 2018 11:30:10 AM (6 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 2 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 ) -
palm/trunk/SOURCE/wind_turbine_model_mod.f90
r3069 r3139 21 21 ! Current revisions: 22 22 ! ----------------- 23 ! 23 ! 24 24 ! 25 25 ! Former revisions: 26 26 ! ----------------- 27 27 ! $Id$ 28 ! Bugfix in calculation of alpha_attack 29 ! 30 ! 3069 2018-06-15 07:56:09Z witha 28 31 ! Initialization of some arrays added 29 32 ! … … 2067 2070 ! 2068 2071 !-- Correct with collective pitch angle: 2069 alpha_attack = alpha_attack- pitch_add(inot)2072 alpha_attack(rseg) = alpha_attack(rseg) - pitch_add(inot) 2070 2073 2071 2074 !
Note: See TracChangeset
for help on using the changeset viewer.