Ignore:
Timestamp:
Aug 16, 2007 2:30:26 PM (17 years ago)
Author:
raasch
Message:

preliminary update of bugfixes and extensions for non-cyclic BCs

File:
1 edited

Legend:

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

    r98 r106  
    44! Actual revisions:
    55! -----------------
    6 !
     6! remaining variables iran changed to iran_part
    77! TEST: PRINT statements on unit 9 (commented out)
    88!
     
    19551955                   THEN
    19561956                      particles(n)%x = particles(n)%x + &
    1957                                        ( random_function( iran ) - 0.5 ) * &
     1957                                       ( random_function( iran_part ) - 0.5 ) *&
    19581958                                       pdx(particles(n)%group)
    19591959                      IF ( particles(n)%x  <=  ( nxl - 0.5 ) * dx )  THEN
     
    19661966                   THEN
    19671967                      particles(n)%y = particles(n)%y + &
    1968                                        ( random_function( iran ) - 0.5 ) * &
     1968                                       ( random_function( iran_part ) - 0.5 ) *&
    19691969                                       pdy(particles(n)%group)
    19701970                      IF ( particles(n)%y  <=  ( nys - 0.5 ) * dy )  THEN
     
    19771977                   THEN
    19781978                      particles(n)%z = particles(n)%z + &
    1979                                        ( random_function( iran ) - 0.5 ) * &
     1979                                       ( random_function( iran_part ) - 0.5 ) *&
    19801980                                       pdz(particles(n)%group)
    19811981                   ENDIF
Note: See TracChangeset for help on using the changeset viewer.