Changeset 3998 for palm/trunk/SOURCE
- Timestamp:
- May 23, 2019 1:38:11 PM (6 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/diagnostic_output_quantities_mod.f90
r3995 r3998 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Bugfix in gathering all output strings 28 ! 29 ! 3995 2019-05-22 18:59:54Z suehring 27 30 ! Avoid compiler warnings about unused variable and fix string operation which 28 31 ! is not allowed with PGI compiler … … 275 278 !-- Remove _xy, _xz, or _yz from string 276 279 l = MAX( 3, LEN_TRIM( do2d(av,ivar) ) ) 277 do2d_var(av,ivar)( 0:l-2) = do2d(av,ivar)(0:l-2)280 do2d_var(av,ivar)(1:l-3) = do2d(av,ivar)(1:l-3) 278 281 ! 279 282 !-- Gather 2d output quantity names, check for double occurrence of output quantity … … 285 288 ivar_all = ivar_all + 1 286 289 l = MAX( 3, LEN_TRIM( do2d(av,ivar) ) ) 287 do2d_var(av,ivar)( 0:l-2) = do2d(av,ivar)(0:l-2)290 do2d_var(av,ivar)(1:l-3) = do2d(av,ivar)(1:l-3) 288 291 ENDDO 289 292 -
palm/trunk/SOURCE/read_restart_data_mod.f90
r3994 r3998 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Formatting adjustment 28 ! 29 ! 3994 2019-05-22 18:08:09Z suehring 27 30 ! output of turbulence intensity added 28 31 ! … … 1097 1100 LOGICAL :: found 1098 1101 1099 REAL(wp), DIMENSION(:,:), ALLOCATABLE :: tmp_2d !< temporary array for storing 2D data1100 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3d !< temporary array for storing 3D data1101 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3d_noghost 1102 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3dwul !<1103 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3dwun !<1104 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3dwur !<1105 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3dwus !<1106 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3dwvl !<1107 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3dwvn !<1108 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3dwvr !<1109 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3dwvs !<1110 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3dwwl !<1111 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3dwwn !<1112 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3dwwr !<1113 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3dwws !<1102 REAL(wp), DIMENSION(:,:), ALLOCATABLE :: tmp_2d !< temporary array for storing 2D data 1103 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3d !< temporary array for storing 3D data 1104 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3d_noghost !< temporary array for storing 3D data without ghost points 1105 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3dwul !< 1106 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3dwun !< 1107 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3dwur !< 1108 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3dwus !< 1109 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3dwvl !< 1110 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3dwvn !< 1111 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3dwvr !< 1112 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3dwvs !< 1113 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3dwwl !< 1114 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3dwwn !< 1115 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3dwwr !< 1116 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tmp_3dwws !< 1114 1117 1115 1118
Note: See TracChangeset
for help on using the changeset viewer.