Ignore:
Timestamp:
Nov 10, 2017 10:36:31 AM (6 years ago)
Author:
schwenkel
Message:

Modified particle box location and further changes in particle model

File:
1 edited

Legend:

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

    r2418 r2606  
    2525! -----------------
    2626! $Id$
     27! Changed particle box locations: center of particle box now coincides
     28! with scalar grid point of same index.
     29! Renamed module and subroutines: lpm_pack_arrays_mod -> lpm_pack_and_sort_mod
     30! lpm_pack_all_arrays -> lpm_sort_in_subboxes, lpm_pack_arrays -> lpm_pack
     31! lpm_sort -> lpm_sort_timeloop_done
     32!
     33! 2418 2017-09-06 15:24:24Z suehring
    2734! Major bugfixes in modeling SGS particle speeds (since revision 1359).
    2835! Particle sorting added to distinguish between already completed and
     
    144151        ONLY: lpm_create_particle, PHASE_RELEASE
    145152
    146     USE lpm_pack_arrays_mod,                                                   &
    147         ONLY:  lpm_pack_all_arrays, lpm_sort
     153    USE lpm_pack_and_sort_mod,                                                   &
     154        ONLY:  lpm_sort_in_subboxes, lpm_sort_timeloop_done
    148155
    149156    USE particle_attributes,                                                   &
     
    281288!--    according to their sub-boxes.
    282289       IF ( .NOT. first_loop_stride  .AND.  use_sgs_for_particles )            &
    283           CALL lpm_sort
     290          CALL lpm_sort_timeloop_done
    284291
    285292       DO  i = nxl, nxr
     
    408415!--    Pack particles (eliminate those marked for deletion),
    409416!--    determine new number of particles
    410        CALL lpm_pack_all_arrays
     417       CALL lpm_sort_in_subboxes
    411418!
    412419!--    Initialize variables for the next (sub-) timestep, i.e., for marking
Note: See TracChangeset for help on using the changeset viewer.