Changeset 1524
- Timestamp:
- Jan 14, 2015 1:18:19 PM (10 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/data_output_tseries.f90
r1329 r1524 20 20 ! Current revisions: 21 21 ! ----------------- 22 ! 22 ! Bugfix: increment dots_time_count after the call of subroutine check_open 23 23 ! 24 24 ! Former revisions: … … 93 93 ! 94 94 !-- Open file for time series output in NetCDF format 95 CALL check_open( 105 ) 96 97 !-- Increment the counter for number of output times 98 ! CAUTION: The following line has to be after the call of the subroutine 99 ! check_open, since check_open resets the counter dots_time_count 100 ! to 0, if a new file is opened 95 101 dots_time_count = dots_time_count + 1 96 CALL check_open( 105 )102 97 103 #if defined( __netcdf ) 98 104 ! -
palm/trunk/SOURCE/read_var_list.f90
r1523 r1524 890 890 READ ( 13 ) momentum_advec 891 891 IF ( TRIM( momentum_advec_check ) /= TRIM( momentum_advec ) ) THEN 892 WRITE( message_string, * ) 'momentum_advec of the restart run ',&892 WRITE( message_string, * ) 'momentum_advec of the restart run ',& 893 893 'differs from momentum_advec of the initial run.' 894 894 CALL message( 'read_parts_of_var_list', 'PA0100', & … … 909 909 READ ( 13 ) scalar_advec 910 910 IF ( TRIM( scalar_advec_check ) /= TRIM( scalar_advec ) ) THEN 911 WRITE( message_string, * ) 'scalar_advec of the restart run ', &911 WRITE( message_string, * ) 'scalar_advec of the restart run ', & 912 912 'differs from scalar_advec of the initial run.' 913 913 CALL message( 'read_parts_of_var_list', 'PA0101', &
Note: See TracChangeset
for help on using the changeset viewer.