Changeset 3768 for palm/trunk/SOURCE/user_flight.f90
- Timestamp:
- Feb 27, 2019 2:35:58 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/user_flight.f90
r3684 r3768 25 25 ! ----------------- 26 26 ! $Id$ 27 ! unused variables commented out + statement added to avoid compiler warnings 28 ! 29 ! 3684 2019-01-20 20:20:58Z knoop 27 30 ! Corrected "Former revisions" section 28 31 ! … … 59 62 IMPLICIT NONE 60 63 61 INTEGER(iwp) :: i !< index along x62 INTEGER(iwp) :: j !< index along y63 INTEGER(iwp) :: k !< index along z64 ! INTEGER(iwp) :: i !< index along x 65 ! INTEGER(iwp) :: j !< index along y 66 ! INTEGER(iwp) :: k !< index along z 64 67 INTEGER(iwp) :: id !< variable identifyer, according to the settings in user_init_flight 65 68 66 69 REAL(wp), DIMENSION(nzb:nzt+1,nysg:nyng,nxlg:nxrg) :: var !< treated variable 70 71 ! 72 !-- Next line is to avoid compiler warning about unused variables. Please remove. 73 IF ( id == 0 .OR. var(nzb,nysg,nxlg) == 0.0_wp ) CONTINUE 67 74 68 75 !
Note: See TracChangeset
for help on using the changeset viewer.