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_write_restart_file.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 control_parameters
    41     USE particle_attributes
     44    USE control_parameters,                                                    &
     45        ONLY:  io_blocks, io_group
     46
     47    USE kinds
     48
     49    USE particle_attributes,                                                   &
     50        ONLY:  bc_par_b, bc_par_lr, bc_par_ns, bc_par_t, initial_particles,    &
     51        maximum_number_of_particles,  maximum_number_of_tails,                 &
     52        maximum_number_of_tailpoints, number_of_initial_particles,             &
     53        number_of_particles, number_of_particle_groups, number_of_tails,       &
     54        particles, particle_groups, particle_tail_coordinates, prt_count,      &
     55        prt_start_index, time_prel, time_write_particle_data,                  &
     56        uniform_particles, use_particle_tails
     57
    4258    USE pegrid
    4359
    4460    IMPLICIT NONE
    4561
    46     CHARACTER (LEN=10) ::  particle_binary_version
    47     INTEGER ::  i
     62    CHARACTER (LEN=10) ::  particle_binary_version   !:
     63    INTEGER(iwp) ::  i                               !:
    4864
    4965!
Note: See TracChangeset for help on using the changeset viewer.