Changeset 1717 for palm/trunk/SOURCE


Ignore:
Timestamp:
Nov 11, 2015 3:09:47 PM (8 years ago)
Author:
raasch
Message:

bugfix of index error in outflow conditions for left boundary

File:
1 edited

Legend:

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

    r1683 r1717  
    1919! Current revisions:
    2020! -----------------
    21 !
     21! Bugfix: index error in outflow conditions for left boundary
    2222!
    2323! Former revisions:
     
    2828! Code annotations made doxygen readable
    2929!
    30 !1410 2014-05-23 12:16:18Z suehring
     30! 1410 2014-05-23 12:16:18Z suehring
    3131! Bugfix: set dirichlet boundary condition for passive_scalar at model domain
    3232! top
     
    669669
    670670       IF ( use_cmax )  THEN
    671           u_p(:,:,-1) = u(:,:,0)
    672           v_p(:,:,0)  = v(:,:,1)
     671          u_p(:,:,0)  = u(:,:,1)
     672          v_p(:,:,-1) = v(:,:,0)
    673673          w_p(:,:,-1) = w(:,:,0)         
    674674       ELSEIF ( .NOT. use_cmax )  THEN
Note: See TracChangeset for help on using the changeset viewer.