Ignore:
Timestamp:
Sep 12, 2018 3:02:00 PM (6 years ago)
Author:
raasch
Message:

various changes to avoid compiler warnings (mainly removal of unused variables)

File:
1 edited

Legend:

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

    r3189 r3241  
    2525! -----------------
    2626! $Id$
     27! unused variables removed
     28!
     29! 3189 2018-08-06 13:18:55Z Giersch
    2730! Bugfix in calculation of the x/y indices for current particle postion
    2831!
     
    119122
    120123    USE arrays_3d,                                                             &
    121         ONLY:  zu, zw
     124        ONLY:  zw
    122125
    123126    USE control_parameters,                                                    &
    124         ONLY:  dz, message_string, particle_maximum_age
     127        ONLY:  message_string, particle_maximum_age
    125128
    126129    USE cpulog,                                                                &
     
    131134
    132135    USE indices,                                                               &
    133         ONLY:  nxl, nxr, nyn, nys, nz, nzb, wall_flags_0,nyng,nysg
     136        ONLY:  nxl, nxr, nyn, nys, nz, wall_flags_0
    134137
    135138    USE kinds
     
    137140    USE particle_attributes,                                                   &
    138141        ONLY:  deleted_particles, ibc_par_b, ibc_par_t, number_of_particles,   &
    139                particles, particle_type, offset_ocean_nzt_m1,                  &
    140                use_sgs_for_particles
     142               particles, particle_type, use_sgs_for_particles
    141143
    142144    USE pegrid
     
    191193
    192194    REAL(wp) ::  dt_particle    !< particle timestep
    193     REAL(wp) ::  dum            !< dummy argument
    194195    REAL(wp) ::  eps = 1E-10_wp !< security number to check if particle has reached a wall
    195196    REAL(wp) ::  pos_x          !< intermediate particle position (x)
Note: See TracChangeset for help on using the changeset viewer.