Ignore:
Timestamp:
Mar 20, 2014 8:40:49 AM (10 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_release_set.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:
     
    4044!------------------------------------------------------------------------------!
    4145
    42     USE control_parameters
    43     USE grid_variables
    44     USE indices
    45     USE particle_attributes
    46     USE random_function_mod
     46    USE control_parameters,                                                    &
     47        ONLY:  iran, message_string, netcdf_data_format, netcdf_output
     48
     49    USE grid_variables,                                                        &
     50        ONLY:  dx, dy
     51
     52    USE indices,                                                               &
     53        ONLY:  nxl, nxr, nyn, nys
     54
     55    USE kinds
     56
     57    USE particle_attributes,                                                   &
     58        ONLY:  initial_particles, iran_part, maximum_number_of_particles,      &
     59               maximum_number_of_tails, minimum_tailpoint_distance,            &
     60               number_of_initial_particles, number_of_initial_tails,           &
     61               number_of_particles, number_of_tails, particles,                &
     62               particle_tail_coordinates, pdx, pdy, pdz, psb, psl, psn, psr,   &
     63               pss, pst, random_start_position, use_particle_tails
     64
     65    USE random_function_mod,                                                   &
     66        ONLY:  random_function
    4767
    4868    IMPLICIT NONE
    4969
    50     INTEGER ::  ie, is, n, nn
     70    INTEGER(iwp) ::  ie     !:
     71    INTEGER(iwp) ::  is     !:
     72    INTEGER(iwp) ::  n      !:
     73    INTEGER(iwp) ::  nn     !:
    5174
    5275
Note: See TracChangeset for help on using the changeset viewer.