Ignore:
Timestamp:
Apr 11, 2014 5:15:14 PM (10 years ago)
Author:
hoffmann
Message:

new Lagrangian particle structure integrated

File:
1 edited

Legend:

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

    r1354 r1359  
    2020! Current revisions:
    2121! -----------------
    22 !
     22! Do not allow the execution of PALM with use_particle_tails, since particle
     23! tails are currently not supported by our new particle structure.
     24!
     25! PA0084 not necessary for new particle structure
    2326!
    2427! Former revisions:
     
    512515                        'with particle advection.'
    513516       CALL message( 'check_parameters', 'PA0017', 1, 2, 0, 6, 0 )
     517    ENDIF
     518
     519!
     520!--
     521    IF ( use_particle_tails )  THEN
     522       message_string = 'Particle tails are currently not available due ' //   &
     523                        'to the new particle structure.'
     524       CALL message( 'check_parameters', 'PA0392', 1, 2, 0, 6, 0 )
    514525    ENDIF
    515526
     
    18171828
    18181829!
    1819 !-- Check the interval for sorting particles.
    1820 !-- Using particles as cloud droplets requires sorting after each timestep.
    1821     IF ( dt_sort_particles /= 0.0_wp  .AND.  cloud_droplets )  THEN
    1822        dt_sort_particles = 0.0_wp
    1823        message_string = 'dt_sort_particles is reset to 0.0 because of cloud' //&
    1824                         '_droplets = .TRUE.'
    1825        CALL message( 'check_parameters', 'PA0084', 0, 1, 0, 6, 0 )
    1826     ENDIF
    1827 
    1828 !
    18291830!-- Set the default intervals for data output, if necessary
    18301831!-- NOTE: dt_dosp has already been set in package_parin
Note: See TracChangeset for help on using the changeset viewer.