Ignore:
Timestamp:
Jun 9, 2017 12:34:55 PM (7 years ago)
Author:
sward
Message:

error messages and numbers updated

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/check_parameters.f90

    r2270 r2271  
    2525! -----------------
    2626! $Id$
     27! roughness-length check altered
     28! Error messages fixed
     29!
     30! 2270 2017-06-09 12:18:47Z maronga
    2731! Revised numbering (removed 2 timeseries)
    2832!
     
    723727             WRITE( message_string, * ) 'coupling mode "',                     &
    724728                   TRIM( coupling_mode ),                                      &
    725              '": nx+1 in ocean is not divisible without remainder with nx+1 in', &
    726              ' atmosphere'
     729             '": nx+1 in ocean is not divisible by nx+1 in', &
     730             ' atmosphere without remainder'
    727731             CALL message( 'check_parameters', 'PA0339', 1, 2, 0, 6, 0 )
    728732          ENDIF
     
    731735             WRITE( message_string, * ) 'coupling mode "',                     &
    732736                   TRIM( coupling_mode ),                                      &
    733              '": ny+1 in ocean is not divisible without remainder with ny+1 in', &
    734              ' atmosphere'
     737             '": ny+1 in ocean is not divisible by ny+1 in', &
     738             ' atmosphere without remainder'
     739
    735740             CALL message( 'check_parameters', 'PA0340', 1, 2, 0, 6, 0 )
    736741          ENDIF
     
    11831188         conserve_volume_flow ) THEN
    11841189         message_string = 'initializing_actions = "initialize_vortex"' //      &
    1185                         ' ist not allowed with conserve_volume_flow = .T.'
     1190                        ' is not allowed with conserve_volume_flow = .T.'
    11861191       CALL message( 'check_parameters', 'PA0343', 1, 2, 0, 6, 0 )
    11871192    ENDIF       
     
    39763981    IF ( ( constant_flux_layer .OR.  &
    39773982           INDEX( initializing_actions, 'set_1d-model_profiles' ) /= 0 ) &
    3978          .AND. roughness_length > 0.5 * dz )  THEN
     3983         .AND. roughness_length >= 0.5 * dz )  THEN
    39793984       message_string = 'roughness_length must be smaller than dz/2'
    39803985       CALL message( 'check_parameters', 'PA0424', 1, 2, 0, 6, 0 )
Note: See TracChangeset for help on using the changeset viewer.