- Timestamp:
- May 22, 2019 6:59:54 PM (6 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/diagnostic_output_quantities_mod.f90
r3994 r3995 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Avoid compiler warnings about unused variable and fix string operation which 28 ! is not allowed with PGI compiler 29 ! 30 ! 3994 2019-05-22 18:08:09Z suehring 27 31 ! Initial revision 28 32 ! … … 149 153 150 154 IMPLICIT NONE 151 155 ! 156 !-- Next line is to avoid compiler warnings about unused variables 157 IF ( timestep_number_at_prev_calc == 0 ) CONTINUE 152 158 153 159 initialized_diagnostic_output_quantities = .FALSE. … … 269 275 !-- Remove _xy, _xz, or _yz from string 270 276 l = MAX( 3, LEN_TRIM( do2d(av,ivar) ) ) 271 do2d_var(av,ivar) = do2d(av,ivar)(0:l-2)277 do2d_var(av,ivar)(0:l-2) = do2d(av,ivar)(0:l-2) 272 278 ! 273 279 !-- Gather 2d output quantity names, check for double occurrence of output quantity … … 279 285 ivar_all = ivar_all + 1 280 286 l = MAX( 3, LEN_TRIM( do2d(av,ivar) ) ) 281 do2d_var(av,ivar) = do2d(av,ivar)(0:l-2)287 do2d_var(av,ivar)(0:l-2) = do2d(av,ivar)(0:l-2) 282 288 ENDDO 283 289 -
palm/trunk/SOURCE/netcdf_data_input_mod.f90
r3994 r3995 21 21 ! ----------------- 22 22 ! 23 ! 23 24 ! Former revisions: 24 25 ! ----------------- 25 26 ! $Id$ 27 ! 28 ! 3994 2019-05-22 18:08:09Z suehring 26 29 ! Remove single location message 27 30 ! -
palm/trunk/SOURCE/netcdf_interface_mod.f90
r3994 r3995 20 20 ! Current revisions: 21 21 ! ------------------ 22 ! output of turbulence intensity added22 ! 23 23 ! 24 24 ! Former revisions: 25 25 ! ----------------- 26 26 ! $Id$ 27 ! output of turbulence intensity added 28 ! 29 ! 3994 2019-05-22 18:08:09Z suehring 27 30 ! remove origin time from time unit, compose origin_time_string within 28 31 ! subroutine netcdf_create_global_atts -
palm/trunk/SOURCE/palm.f90
r3994 r3995 305 305 306 306 USE diagnostic_output_quantities_mod, & 307 ONLY: diagnostic_output_quantities_calculate, & 308 timestep_number_at_prev_calc 307 ONLY: diagnostic_output_quantities_calculate 309 308 310 309 USE indices, &
Note: See TracChangeset
for help on using the changeset viewer.