Changeset 4297 for palm/trunk/SOURCE/check_parameters.f90
- Timestamp:
- Nov 21, 2019 10:37:50 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/check_parameters.f90
r4286 r4297 25 25 ! ----------------- 26 26 ! 4172 2019-08-20 11:55:33Z oliver.maas 27 ! adjust message to the modified parameter recycling_yshift 28 ! 29 ! 11:55:33Z oliver.maas 27 30 ! Check if a cross section is specified if any output cross-section quantity 28 31 ! is given … … 2971 2974 recycling_plane = recycling_width / dx 2972 2975 ! 2973 !-- Because the y-shift is done with a distance of INT( npey / 2 ) no shift2976 !-- recycling_yshift will have no effect with only one pe in y-direction 2974 2977 !-- is possible if there is only one PE in y direction. 2975 IF ( recycling_yshift.AND. pdims(2) < 2 ) THEN2976 WRITE( message_string, * ) 'recycling_yshift = .T. requires more',&2977 ' than one processor in y direction'2978 CALL message( 'check_parameters', 'PA0421', 1, 2, 0, 6, 0 )2978 IF ( ( recycling_yshift /= 0 ) .AND. pdims(2) < 2 ) THEN 2979 WRITE( message_string, * ) 'recycling_yshift will have no ' // & 2980 'effect with only one pe in y-direction.' 2981 CALL message( 'check_parameters', 'PA0421', 0, 0, 0, 6, 0 ) 2979 2982 ENDIF 2980 2983
Note: See TracChangeset
for help on using the changeset viewer.