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/lpm_extend_tails.f90

    r1321 r1359  
    2020! Current revisions:
    2121! ------------------
    22 !
     22! New particle structure integrated.
     23! Kind definition added to all floating point numbers.
    2324!
    2425! Former revisions:
     
    6465
    6566
    66     distance = 0.0
     67    distance = 0.0_wp
    6768
    6869    DO  n = 1, number_of_particles
     
    7475!--       Calculate the distance between the actual particle position and the
    7576!--       next tailpoint
    76           IF ( minimum_tailpoint_distance /= 0.0 )  THEN
     77          IF ( minimum_tailpoint_distance /= 0.0_wp )  THEN
    7778             distance = ( particle_tail_coordinates(1,1,nn) -      &
    7879                          particle_tail_coordinates(2,1,nn) )**2 + &
     
    109110!
    110111!--       Increase the age of the tailpoints
    111           IF ( minimum_tailpoint_distance /= 0.0 )  THEN
     112          IF ( minimum_tailpoint_distance /= 0.0_wp )  THEN
    112113             particle_tail_coordinates(2:particles(n)%tailpoints,5,nn) =    &
    113114               particle_tail_coordinates(2:particles(n)%tailpoints,5,nn) + dt_3d
Note: See TracChangeset for help on using the changeset viewer.