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_calc_liquid_water_content.f90

    r1319 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:
    2529! -----------------
    2630! $Id$
    27 !
    28 ! 1318 2014-03-17 13:35:16Z raasch
    29 ! module interfaces removed
    3031!
    3132! 1036 2012-10-22 13:43:42Z raasch
     
    4142!------------------------------------------------------------------------------!
    4243
    43     USE arrays_3d
    44     USE cloud_parameters
    45     USE constants
    46     USE control_parameters
    47     USE cpulog
    48     USE grid_variables
    49     USE indices
    50     USE particle_attributes
     44    USE arrays_3d,                                                             &
     45        ONLY:  ql, ql_v, ql_vp
     46
     47    USE cloud_parameters,                                                      &
     48        ONLY:  rho_l
     49
     50    USE constants,                                                             &
     51        ONLY:  pi
     52
     53    USE control_parameters,                                                    &
     54        ONLY:  dz, message_string, rho_surface
     55
     56    USE cpulog,                                                                &
     57        ONLY:  cpu_log, log_point_s
     58
     59    USE grid_variables,                                                        &
     60        ONLY:  dx, dy
     61
     62    USE indices,                                                               &
     63        ONLY:  nxl, nxr, nyn, nys, nzb, nzt
     64
     65    USE kinds
     66
     67    USE particle_attributes,                                                   &
     68        ONLY:  particles, prt_count, prt_start_index
    5169
    5270    IMPLICIT NONE
    5371
    54     INTEGER ::  i, j, k, n, psi
     72    INTEGER(iwp) ::  i   !:
     73    INTEGER(iwp) ::  j   !:
     74    INTEGER(iwp) ::  k   !:
     75    INTEGER(iwp) ::  n   !:
     76    INTEGER(iwp) ::  psi !:
    5577
    5678
Note: See TracChangeset for help on using the changeset viewer.