Ignore:
Timestamp:
Jun 8, 2017 4:58:28 PM (7 years ago)
Author:
schwenkel
Message:

unused variables removed

File:
1 edited

Legend:

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

    r2263 r2265  
    2525! -----------------
    2626! $Id$
     27! Unused variables removed.
     28!
     29! 2263 2017-06-08 14:59:01Z schwenkel
    2730! Implemented splitting and merging algorithm
    2831!
     
    177180        ONLY:   alloc_factor, bc_par_b, bc_par_lr, bc_par_ns, bc_par_t,        &
    178181                block_offset, block_offset_def, collision_kernel,              &
    179                 curvature_solution_effects,                                    &
    180                 density_ratio, grid_particles, isf,i_splitting_mode,           &
    181                 initial_weighting_factor, ibc_par_b, ibc_par_lr, ibc_par_ns,   &
    182                 ibc_par_t, iran_part, log_z_z0,                                &
    183                 max_number_of_particle_groups, maximum_number_of_particles,    &
    184                 min_nr_particle, mpi_particle_type,                            &
    185                 number_concentration, number_particles_per_gridbox,            &
    186                 number_of_particles,                                           &
     182                curvature_solution_effects, density_ratio, grid_particles,     &
     183                isf,i_splitting_mode, initial_weighting_factor, ibc_par_b,     &
     184                ibc_par_lr, ibc_par_ns, ibc_par_t, iran_part, log_z_z0,        &
     185                max_number_of_particle_groups, min_nr_particle,                &
     186                mpi_particle_type, number_concentration,                       &
     187                number_particles_per_gridbox,  number_of_particles,            &
    187188                number_of_particle_groups, number_of_sublayers,                &
    188189                offset_ocean_nzt, offset_ocean_nzt_m1,                         &
    189190                particles, particle_advection_start, particle_groups,          &
    190191                particle_groups_type, particles_per_point,                     &
    191                 particle_type, pdx, pdy, pdz,                                  &
    192                 prt_count, psb, psl, psn, psr, pss, pst,                       &
    193                 radius, random_start_position, read_particles_from_restartfile,&
    194                 seed_follows_topography, sgs_wf_part, sort_count,              &
    195                 splitting_function, splitting_mode, total_number_of_particles,  &
    196                 use_sgs_for_particles,                                         &
    197                 write_particle_statistics, uniform_particles, zero_particle,   &
    198                 z0_av_global
     192                particle_type, pdx, pdy, pdz,  prt_count, psb, psl, psn, psr,  &
     193                pss, pst, radius, random_start_position,                       & 
     194                read_particles_from_restartfile, seed_follows_topography,      &
     195                sgs_wf_part, sort_count, splitting_function, splitting_mode,   &
     196                total_number_of_particles, use_sgs_for_particles,              &
     197                write_particle_statistics, zero_particle, z0_av_global
    199198
    200199    USE pegrid
     
    532531                 grid_particles(nzb+1:nzt,nys:nyn,nxl:nxr) )
    533532
    534        maximum_number_of_particles = 0
    535533       number_of_particles         = 0
    536534
     
    592590          CALL check_open( 80 )
    593591          WRITE ( 80, 8000 )  current_timestep_number, simulated_time,         &
    594                               number_of_particles,                             &
    595                               maximum_number_of_particles
     592                              number_of_particles                             
    596593          CALL close_file( 80 )
    597594       ENDIF
     
    956953
    957954!
    958 !-- Determine maximum number of particles (i.e., all possible particles that
    959 !-- have been allocated) and the current number of particles
     955!-- Determine the current number of particles
    960956    DO  ip = nxl, nxr
    961957       DO  jp = nys, nyn
    962958          DO  kp = nzb+1, nzt
    963              maximum_number_of_particles = maximum_number_of_particles         &
    964                                            + SIZE(grid_particles(kp,jp,ip)%particles)
    965959             number_of_particles         = number_of_particles                 &
    966960                                           + prt_count(kp,jp,ip)
Note: See TracChangeset for help on using the changeset viewer.