Ignore:
Timestamp:
Jun 8, 2017 2:59:01 PM (7 years ago)
Author:
schwenkel
Message:

Implemented splitting and merging algorithm

File:
1 edited

Legend:

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

    r2233 r2263  
    2525! -----------------
    2626! $Id$
     27! Implemented splitting and merging algorithm
     28!
     29! 2233 2017-05-30 18:08:54Z suehring
    2730!
    2831! 2232 2017-05-30 17:47:52Z suehring
     
    142145        ONLY:  collision_kernel, deleted_particles, deallocate_memory,         &
    143146               dt_write_particle_data, dt_prel, end_time_prel,                 &
    144                grid_particles, number_of_particles, number_of_particle_groups, &
    145                particles, particle_groups, prt_count, step_dealloc,            &
    146                time_prel, time_write_particle_data, trlp_count_sum,            &
    147                trlp_count_recv_sum, trnp_count_sum,                            &
    148                trnp_count_recv_sum, trrp_count_sum, trrp_count_recv_sum,       &
    149                trsp_count_sum, trsp_count_recv_sum,                            &
     147               grid_particles, merging,  number_of_particles,                  &
     148               number_of_particle_groups, particles, particle_groups,          &
     149               prt_count, splitting, step_dealloc, time_prel,                  &
     150               time_write_particle_data, trlp_count_sum, trlp_count_recv_sum,  &
     151               trnp_count_sum, trnp_count_recv_sum, trrp_count_sum,            &
     152               trrp_count_recv_sum, trsp_count_sum, trsp_count_recv_sum,       &
    150153               use_sgs_for_particles, write_particle_statistics
    151 
     154                             
    152155    USE pegrid
    153156
     
    369372       IF ( dt_3d_reached )  time_prel = time_prel + dt_3d
    370373!
     374!--    Apply splitting and merging algorithm
     375       IF ( cloud_droplets )  THEN
     376          IF ( splitting ) THEN
     377             CALL lpm_splitting
     378          ENDIF
     379          IF ( merging ) THEN
     380             CALL lpm_merging
     381          ENDIF
     382       ENDIF
     383!
    371384!--    Move Particles local to PE to a different grid cell
    372385       CALL lpm_move_particle
Note: See TracChangeset for help on using the changeset viewer.