- Timestamp:
- Jul 29, 2016 3:51:57 PM (8 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/data_output_2d.f90
r1977 r1980 19 19 ! Current revisions: 20 20 ! ----------------- 21 ! 21 ! Bugfix, in order to steer user-defined output, setting flag found explicitly 22 ! to .F. 22 23 ! 23 24 ! Former revisions: … … 414 415 415 416 IF ( do2d_mode == mode ) THEN 417 ! 418 !-- Set flag to steer output of radiation, land-surface, or user-defined 419 !-- quantities 420 found = .FALSE. 416 421 417 422 nzb_do = nzb -
palm/trunk/SOURCE/data_output_3d.f90
r1977 r1980 19 19 ! Current revisions: 20 20 ! ------------------ 21 ! 21 ! Bugfix, in order to steer user-defined output, setting flag found explicitly 22 ! to .F. 22 23 ! 23 24 ! Former revisions: … … 257 258 nzb_do = nzb 258 259 nzt_do = nz_do3d 259 260 ! 261 !-- Set flag to steer output of radiation, land-surface, or user-defined 262 !-- quantities 263 found = .FALSE. 260 264 ! 261 265 !-- Allocate a temporary array with the desired output dimensions. -
palm/trunk/SOURCE/data_output_mask.f90
r1977 r1980 19 19 ! Current revisions: 20 20 ! ----------------- 21 ! 21 ! Bugfix, in order to steer user-defined output, setting flag found explicitly 22 ! to .F. 22 23 ! 23 24 ! Former revisions: … … 211 212 mask_size_l(mid,3)) ) 212 213 ENDIF 214 ! 215 !-- Set flag to steer output of radiation, land-surface, or user-defined 216 !-- quantities 217 found = .FALSE. 213 218 ! 214 219 !-- Store the variable chosen. -
palm/trunk/SOURCE/netcdf_interface_mod.f90
r1977 r1980 19 19 ! Current revisions: 20 20 ! ------------------ 21 ! 21 ! Bugfix, in order to steer user-defined output, setting flag found explicitly 22 ! to .F. 22 23 ! 23 24 ! Former revisions: … … 738 739 ! 739 740 !-- Check for the grid 740 found = . TRUE.741 found = .FALSE. 741 742 SELECT CASE ( domask(mid,av,i) ) 742 743 ! … … 1248 1249 ! 1249 1250 !-- Check for the grid 1250 found = . TRUE.1251 found = .FALSE. 1251 1252 SELECT CASE ( do3d(av,i) ) 1252 1253 ! … … 1851 1852 ! 1852 1853 !-- Check for the grid 1853 found = . TRUE.1854 found = .FALSE. 1854 1855 SELECT CASE ( do2d(av,i) ) 1855 1856 ! … … 2516 2517 ! 2517 2518 !-- Check for the grid 2518 found = . TRUE.2519 found = .FALSE. 2519 2520 SELECT CASE ( do2d(av,i) ) 2520 2521 ! … … 3170 3171 ! 3171 3172 !-- Check for the grid 3172 found = . TRUE.3173 found = .FALSE. 3173 3174 SELECT CASE ( do2d(av,i) ) 3174 3175 ! … … 4342 4343 ! 4343 4344 !-- First check for the vertical grid 4344 found = . TRUE.4345 found = .FALSE. 4345 4346 SELECT CASE ( data_output_sp(i) ) 4346 4347 !
Note: See TracChangeset
for help on using the changeset viewer.