Changeset 1406
- Timestamp:
- May 16, 2014 1:47:01 PM (11 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/init_3d_model.f90
r1403 r1406 20 20 ! Current revisions: 21 21 ! ------------------ 22 ! 22 ! bugfix: setting of initial velocities at k=1 to zero not in case of a 23 ! no-slip boundary condition for uv 23 24 ! 24 25 ! Former revisions: … … 782 783 !-- in the limiting formula!). The original values are stored to be later 783 784 !-- used for volume flow control. 784 DO i = nxlg, nxrg 785 DO j = nysg, nyng 786 u(nzb:nzb_u_inner(j,i)+1,j,i) = 0.0_wp 787 v(nzb:nzb_v_inner(j,i)+1,j,i) = 0.0_wp 788 ENDDO 789 ENDDO 785 IF ( ibc_uv_b /= 1 ) THEN 786 DO i = nxlg, nxrg 787 DO j = nysg, nyng 788 u(nzb:nzb_u_inner(j,i)+1,j,i) = 0.0_wp 789 v(nzb:nzb_v_inner(j,i)+1,j,i) = 0.0_wp 790 ENDDO 791 ENDDO 792 ENDIF 790 793 791 794 IF ( humidity .OR. passive_scalar ) THEN -
palm/trunk/SOURCE/poisfft.f90
r1321 r1406 20 20 ! Current revisions: 21 21 ! ----------------- 22 ! 22 ! bugfix for pgi 14.4: declare create moved after array declaration 23 23 ! 24 24 ! Former revisions: … … 220 220 221 221 REAL(wp), DIMENSION(1:nz,nys:nyn,nxl:nxr) :: ar !: 222 REAL(wp), DIMENSION(nys:nyn,nxl:nxr,1:nz) :: ar_inv !: 222 223 !$acc declare create( ar_inv ) 223 REAL(wp), DIMENSION(nys:nyn,nxl:nxr,1:nz) :: ar_inv !:224 224 225 225 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: ar1 !: -
palm/trunk/SOURCE/tridia_solver.f90
r1343 r1406 20 20 ! Current revisions: 21 21 ! ------------------ 22 ! 22 ! bugfix for pgi 14.4: declare create moved after array declaration 23 23 ! 24 24 ! Former revisions: … … 336 336 REAL(wp) :: ar(nxl_z:nxr_z,nys_z:nyn_z,1:nz) !: 337 337 338 REAL(wp), DIMENSION(nxl_z:nxr_z,nys_z:nyn_z,0:nz-1) :: ar1 !: 338 339 !$acc declare create( ar1 ) 339 REAL(wp), DIMENSION(nxl_z:nxr_z,nys_z:nyn_z,0:nz-1) :: ar1 !:340 340 341 341 !
Note: See TracChangeset
for help on using the changeset viewer.