Changeset 1320 for palm/trunk/SOURCE/lpm_extend_particle_array.f90
- Timestamp:
- Mar 20, 2014 8:40:49 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/lpm_extend_particle_array.f90
r1310 r1320 20 20 ! Current revisions: 21 21 ! ------------------ 22 ! 22 ! ONLY-attribute added to USE-statements, 23 ! kind-parameters added to all INTEGER and REAL declaration statements, 24 ! kinds are defined in new module kinds, 25 ! comment fields (!:) to be used for variable explanations added to 26 ! all variable declaration statements 23 27 ! 24 28 ! Former revisions: … … 38 42 !------------------------------------------------------------------------------! 39 43 40 USE particle_attributes 44 USE kinds 45 46 USE particle_attributes, & 47 ONLY: number_of_initial_particles, number_of_particles, & 48 maximum_number_of_particles, particles, particle_mask, & 49 particle_type, write_particle_statistics 41 50 42 51 IMPLICIT NONE 43 52 44 INTEGER :: new_maximum_number, number_of_new_particles 53 INTEGER(iwp) :: new_maximum_number !: 54 INTEGER(iwp) :: number_of_new_particles !: 45 55 46 LOGICAL, DIMENSION(:), ALLOCATABLE :: tmp_particle_mask47 56 48 TYPE(particle_type), DIMENSION(:), ALLOCATABLE :: tmp_particles 57 LOGICAL, DIMENSION(:), ALLOCATABLE :: tmp_particle_mask !: 58 59 TYPE(particle_type), DIMENSION(:), ALLOCATABLE :: tmp_particles !: 49 60 50 61
Note: See TracChangeset
for help on using the changeset viewer.