Ignore:
Timestamp:
Jun 29, 2017 9:28:18 AM (7 years ago)
Author:
raasch
Message:

write_binary is of type LOGICAL now, MPI2-related code removed, obsolete variables removed, sendrecv_in_background related parts removed, missing variable descriptions added

File:
1 edited

Legend:

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

    r2233 r2298  
    2525! -----------------
    2626! $Id$
     27! comment changed + some formatting
     28!
     29! 2233 2017-05-30 18:08:54Z suehring
    2730!
    2831! 2232 2017-05-30 17:47:52Z suehring
     
    537540          !$OMP PARALLEL DO PRIVATE( i, j, k )
    538541          DO  m = 1, bc_h(0)%ns
    539              i             = bc_h(0)%i(m)           
    540              j             = bc_h(0)%j(m)
    541              k             = bc_h(0)%k(m)
     542             i = bc_h(0)%i(m)
     543             j = bc_h(0)%j(m)
     544             k = bc_h(0)%k(m)
    542545             tend(k-1,j,i) = tend(k,j,i)
    543546          ENDDO
     
    546549          !$OMP PARALLEL DO PRIVATE( i, j, k )
    547550          DO  m = 1, bc_h(1)%ns
    548              i             = bc_h(1)%i(m)           
    549              j             = bc_h(1)%j(m)
    550              k             = bc_h(1)%k(m)
     551             i = bc_h(1)%i(m)
     552             j = bc_h(1)%j(m)
     553             k = bc_h(1)%k(m)
    551554             tend(k+1,j,i) = tend(k,j,i)
    552555          ENDDO
     
    559562          !$OMP PARALLEL DO PRIVATE( i, j, k )
    560563          DO  m = 1, bc_h(0)%ns
    561              i             = bc_h(0)%i(m)           
    562              j             = bc_h(0)%j(m)
    563              k             = bc_h(0)%k(m)
     564             i = bc_h(0)%i(m)
     565             j = bc_h(0)%j(m)
     566             k = bc_h(0)%k(m)
    564567             tend(k-1,j,i) = 0.0_wp
    565568          ENDDO
     
    568571          !$OMP PARALLEL DO PRIVATE( i, j, k )
    569572          DO  m = 1, bc_h(1)%ns
    570              i             = bc_h(1)%i(m)           
    571              j             = bc_h(1)%j(m)
    572              k             = bc_h(1)%k(m)
     573             i = bc_h(1)%i(m)
     574             j = bc_h(1)%j(m)
     575             k = bc_h(1)%k(m)
    573576             tend(k+1,j,i) = 0.0_wp
    574577          ENDDO
     
    616619!
    617620!--    Solve Poisson equation for perturbation pressure using Multigrid scheme,
    618 !--    array tend is used to store the residuals, logical exchange_mg is used
    619 !--    to discern data exchange in multigrid ( 1 ghostpoint ) and normal grid
    620 !--    ( nbgp ghost points ).
     621!--    array tend is used to store the residuals.
    621622
    622623!--    If the number of grid points of the gathered grid, which is collected
Note: See TracChangeset for help on using the changeset viewer.