Changeset 3547 for palm/trunk/SOURCE/advec_s_up.f90
- Timestamp:
- Nov 21, 2018 1:21:24 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/advec_s_up.f90
r3538 r3547 25 25 ! ----------------- 26 26 ! $Id$ 27 ! variables documented 28 ! 29 ! 3538 2018-11-20 10:55:41Z suehring 27 30 ! Remove unnecessary double-masking of topography 28 31 ! … … 123 126 IMPLICIT NONE 124 127 125 INTEGER(iwp) :: i !< 126 INTEGER(iwp) :: j !< 127 INTEGER(iwp) :: k !< 128 129 REAL(wp) :: ukomp !< 130 REAL(wp) :: vkomp !< 131 REAL(wp) :: wkomp !< 128 INTEGER(iwp) :: i !< grid index along x-direction 129 INTEGER(iwp) :: j !< grid index along y-direction 130 INTEGER(iwp) :: k !< grid index along z-direction 131 132 REAL(wp) :: ukomp !< advection velocity along x-direction 133 REAL(wp) :: vkomp !< advection velocity along y-direction 134 REAL(wp) :: wkomp !< advection velocity along z-direction 132 135 #if defined( __nopointer ) 133 REAL(wp), DIMENSION(nzb:nzt+1,nysg:nyng,nxlg:nxrg) :: sk !< 136 REAL(wp), DIMENSION(nzb:nzt+1,nysg:nyng,nxlg:nxrg) :: sk !< treated scalar 134 137 #else 135 REAL(wp), DIMENSION(:,:,:), POINTER :: sk 138 REAL(wp), DIMENSION(:,:,:), POINTER :: sk !< treated scalar 136 139 #endif 137 140 … … 202 205 IMPLICIT NONE 203 206 204 INTEGER(iwp) :: i !< 205 INTEGER(iwp) :: j !< 206 INTEGER(iwp) :: k !< 207 208 REAL(wp) :: ukomp !< 209 REAL(wp) :: vkomp !< 210 REAL(wp) :: wkomp !< 207 INTEGER(iwp) :: i !< grid index along x-direction 208 INTEGER(iwp) :: j !< grid index along y-direction 209 INTEGER(iwp) :: k !< grid index along z-direction 210 211 REAL(wp) :: ukomp !< advection velocity along x-direction 212 REAL(wp) :: vkomp !< advection velocity along y-direction 213 REAL(wp) :: wkomp !< advection velocity along z-direction 211 214 212 215 #if defined( __nopointer ) 213 REAL(wp), DIMENSION(nzb:nzt+1,nysg:nyng,nxlg:nxrg) :: sk !< 216 REAL(wp), DIMENSION(nzb:nzt+1,nysg:nyng,nxlg:nxrg) :: sk !< treated scalar 214 217 #else 215 REAL(wp), DIMENSION(:,:,:), POINTER :: sk 218 REAL(wp), DIMENSION(:,:,:), POINTER :: sk !< treated scalar 216 219 #endif 217 220
Note: See TracChangeset
for help on using the changeset viewer.