Ignore:
Timestamp:
Dec 14, 2017 6:46:24 PM (6 years ago)
Author:
suehring
Message:

Particle reflections at downward-facing walls; revision of particle speed interpolations at walls; bugfixes in get_topography_index and in date constants

File:
1 edited

Legend:

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

    r2696 r2698  
    2020! Current revisions:
    2121! -----------------
    22 !
     22! Bugfix in get_topography_top_index
    2323!
    2424! Former revisions:
     
    870870
    871871    USE surface_mod,                                                           &
    872         ONLY:  get_topography_top_index
     872        ONLY:  get_topography_top_index_ji
    873873
    874874    IMPLICIT NONE
     
    972972          DO  i = nxlg, nxrg
    973973             DO  j = nysg, nyng
    974                 nz_s_shift = get_topography_top_index( j, i, 's' )
     974                nz_s_shift = get_topography_top_index_ji( j, i, 's' )
    975975
    976976                e(nz_s_shift:nzt+1,j,i)  =  e(0:nzt+1-nz_s_shift,j,i)
     
    991991          IF ( complex_terrain )  THEN
    992992             IF ( nxlg <= 0 .AND. nxrg >= 0 .AND. nysg <= 0 .AND. nyng >= 0 )  THEN
    993                 nz_s_shift_l = get_topography_top_index( 0, 0, 's' )
     993                nz_s_shift_l = get_topography_top_index_ji( 0, 0, 's' )
    994994             ELSE
    995995                nz_s_shift_l = 0
Note: See TracChangeset for help on using the changeset viewer.