Ignore:
Timestamp:
Mar 20, 2007 8:33:14 AM (17 years ago)
Author:
raasch
Message:

preliminary changes for radiation conditions

File:
1 edited

Legend:

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

    r4 r73  
    44! Actual revisions:
    55! -----------------
    6 !
     6! Neumann boundary conditions at inflow/outflow in case of non-cyclic boundary
     7! conditions
    78!
    89! Former revisions:
     
    9899#endif
    99100
     101!
     102!-- Neumann-conditions at inflow/outflow in case of non-cyclic boundary
     103!-- conditions
     104    IF ( inflow_l .OR. outflow_l )  ar(:,nxl-1) = ar(:,nxl)
     105    IF ( inflow_r .OR. outflow_r )  ar(:,nxr+1) = ar(:,nxr)
     106    IF ( inflow_s .OR. outflow_s )  ar(nys-1,:) = ar(nys,:)
     107    IF ( inflow_n .OR. outflow_n )  ar(nyn+1,:) = ar(nyn,:)
     108
    100109    CALL cpu_log( log_point_s(13), 'exchange_horiz_2d', 'stop' )
    101110
Note: See TracChangeset for help on using the changeset viewer.