Changeset 229 for palm/trunk/SOURCE/init_particles.f90
- Timestamp:
- Feb 3, 2009 9:55:14 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/init_particles.f90
r198 r229 4 4 ! Actual revisions: 5 5 ! ----------------- 6 ! 6 ! Bugfix: arrays for tails are allocated with a minimum size of 10 tails if 7 ! there is no tail initially 7 8 ! 8 9 ! Former revisions: … … 457 458 ENDDO 458 459 maximum_number_of_tails = factor * INT( value ) 460 ! 461 !-- Create a minimum number of tails in case that there is no tail 462 !-- initially (otherwise, index errors will occur when adressing the 463 !-- arrays below) 464 IF ( maximum_number_of_tails == 0 ) maximum_number_of_tails = 10 459 465 460 466 ALLOCATE( particle_tail_coordinates(maximum_number_of_tailpoints,5, &
Note: See TracChangeset
for help on using the changeset viewer.