Changeset 1257 for palm/trunk/SOURCE/diffusion_s.f90
- Timestamp:
- Nov 8, 2013 3:18:40 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/diffusion_s.f90
r1132 r1257 20 20 ! Current revisions: 21 21 ! ------------------ 22 ! 22 ! openacc loop and loop vector clauses removed 23 23 ! 24 24 ! Former revisions: … … 229 229 !$acc present( s_flux_b, s_flux_t, tend, wall_s_flux ) & 230 230 !$acc present( wall_w_x, wall_w_y ) 231 !$acc loop232 231 DO i = i_left, i_right 233 232 DO j = j_south, j_north 234 233 ! 235 234 !-- Compute horizontal diffusion 236 !$acc loop vector( 32 )237 235 DO k = 1, nzt 238 236 IF ( k > nzb_s_outer(j,i) ) THEN … … 252 250 ! 253 251 !-- Apply prescribed horizontal wall heatflux where necessary 254 !$acc loop vector(32)255 252 DO k = 1, nzt 256 253 IF ( k > nzb_s_inner(j,i) .AND. k <= nzb_s_outer(j,i) .AND. & … … 279 276 !-- prescribed or computed at bottom and/or top, index k starts/ends at 280 277 !-- nzb+2 or nzt-1, respectively. 281 !$acc loop vector( 32 )282 278 DO k = 1, nzt_diff 283 279 IF ( k >= nzb_diff_s_inner(j,i) ) THEN … … 293 289 !-- Vertical diffusion at the first computational gridpoint along 294 290 !-- z-direction 295 !$acc loop vector( 32 )296 291 DO k = 1, nzt 297 292 IF ( use_surface_fluxes .AND. k == nzb_s_inner(j,i)+1 ) THEN
Note: See TracChangeset
for help on using the changeset viewer.