Changeset 3046 for palm/trunk/SOURCE/check_parameters.f90
- Timestamp:
- May 29, 2018 8:02:15 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/check_parameters.f90
r3045 r3046 20 20 ! Current revisions: 21 21 ! ----------------- 22 ! 22 ! Error messages revised 23 23 ! 24 24 ! Former revisions: … … 1210 1210 aerosol_nh4no3 = .TRUE. 1211 1211 ELSE 1212 message_string = 'unknown aerosol ="' // & 1213 TRIM( aerosol_bulk ) // '"' 1212 message_string = 'unknown aerosol = "' // TRIM( aerosol_bulk ) // '"' 1214 1213 CALL message( 'check_parameters', 'PA0469', 1, 2, 0, 6, 0 ) 1215 1214 ENDIF … … 1842 1841 ELSE 1843 1842 WRITE( message_string, * ) 'cfl_factor = ', cfl_factor, & 1844 ' out of range 0.0 < cfl_factor <= 1.0 is required'1843 ' out of range &0.0 < cfl_factor <= 1.0 is required' 1845 1844 CALL message( 'check_parameters', 'PA0045', 1, 2, 0, 6, 0 ) 1846 1845 ENDIF … … 1886 1885 ELSE 1887 1886 message_string = 'variable translation speed used for Galilei-' // & 1888 'transformation, which may cause instabilities in stably ' //&1887 'transformation, which may cause & instabilities in stably ' // & 1889 1888 'stratified regions' 1890 1889 CALL message( 'check_parameters', 'PA0048', 0, 1, 0, 6, 0 ) … … 2062 2061 surface_heatflux /= 0.0_wp ) THEN 2063 2062 message_string = 'boundary_condition: bc_pt_b = "' // TRIM( bc_pt_b ) //& 2064 ' is not allowed with constant_heatflux = .TRUE.'2063 '& is not allowed with constant_heatflux = .TRUE.' 2065 2064 CALL message( 'check_parameters', 'PA0065', 1, 2, 0, 6, 0 ) 2066 2065 ENDIF … … 3378 3377 IF ( k == 0 .OR. data_output(i)(ilen-2:ilen) /= '_xy' ) THEN 3379 3378 message_string = 'illegal value for data_output: "' // & 3380 TRIM( var ) // '" only 2d-horizontal ' //&3379 TRIM( var ) // '" & only 2d-horizontal ' // & 3381 3380 'cross sections are allowed for this value' 3382 3381 CALL message( 'check_parameters', 'PA0111', 1, 2, 0, 6, 0 ) … … 3637 3636 '5 (parallel netCDF 4) and ' // & 3638 3637 '6 (parallel netCDF 4 Classic model) '// & 3639 ' are currently not supported (not yet tested) ' //&3640 'for masked data. Using respective non-parallel' //&3638 '& are currently not supported (not yet tested) ' //& 3639 'for masked data. &Using respective non-parallel' //& 3641 3640 ' output for masked data.' 3642 3641 CALL message( 'check_parameters', 'PA0383', 0, 0, 0, 6, 0 ) … … 3653 3652 #else 3654 3653 message_string = 'netCDF: netCDF4 format requested but no ' // & 3655 'cpp-directive __netcdf4 given switch ' //&3654 'cpp-directive __netcdf4 given & switch ' // & 3656 3655 'back to 64-bit offset format' 3657 3656 CALL message( 'check_parameters', 'PA0171', 0, 1, 0, 6, 0 ) … … 3664 3663 #else 3665 3664 message_string = 'netCDF: netCDF4 parallel output requested but no ' // & 3666 'cpp-directive __netcdf4_parallel given , switch ' //&3665 'cpp-directive __netcdf4_parallel given & switch ' //& 3667 3666 'back to netCDF4 non-parallel output' 3668 3667 CALL message( 'check_parameters', 'PA0099', 0, 1, 0, 6, 0 ) … … 4188 4187 message_string = 'complex_terrain requires topography' // & 4189 4188 ' = ''read_from_file''' 4190 CALL message( 'check_parameters', 'PA0 472', 1, 2, 0, 6, 0 )4189 CALL message( 'check_parameters', 'PA0295', 1, 2, 0, 6, 0 ) 4191 4190 ENDIF 4192 4191 … … 4227 4226 IF ( dt_fixed ) THEN 4228 4227 WRITE( message_string, '(A,F9.4,A)' ) 'Output at every ' // & 4229 'timestep is wanted (' // dt_do_name // ' = 0.0). 4228 'timestep is wanted (' // dt_do_name // ' = 0.0).&'// & 4230 4229 'The output interval is set to the fixed timestep dt '// & 4231 4230 '= ', dt, 's.'
Note: See TracChangeset
for help on using the changeset viewer.