Ignore:
Timestamp:
Mar 20, 2014 8:40:49 AM (11 years ago)
Author:
raasch
Message:

ONLY-attribute added to USE-statements,
kind-parameters added to all INTEGER and REAL declaration statements,
kinds are defined in new module kinds,
old module precision_kind is removed,
revision history before 2012 removed,
comment fields (!:) to be used for variable explanations added to all variable declaration statements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/lpm_extend_particle_array.f90

    r1310 r1320  
    2020! Current revisions:
    2121! ------------------
    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
    2327!
    2428! Former revisions:
     
    3842!------------------------------------------------------------------------------!
    3943
    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
    4150
    4251    IMPLICIT NONE
    4352
    44     INTEGER ::  new_maximum_number, number_of_new_particles
     53    INTEGER(iwp) ::  new_maximum_number                              !:
     54    INTEGER(iwp) ::  number_of_new_particles                         !:
    4555
    46     LOGICAL, DIMENSION(:), ALLOCATABLE ::  tmp_particle_mask
    4756
    48     TYPE(particle_type), DIMENSION(:), ALLOCATABLE ::  tmp_particles
     57    LOGICAL, DIMENSION(:), ALLOCATABLE ::  tmp_particle_mask         !:
     58
     59    TYPE(particle_type), DIMENSION(:), ALLOCATABLE ::  tmp_particles !:
    4960
    5061
Note: See TracChangeset for help on using the changeset viewer.