Changeset 2550 for palm/trunk/SOURCE/check_parameters.f90
- Timestamp:
- Oct 16, 2017 5:12:01 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/check_parameters.f90
r2513 r2550 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Added checks for complex terrain simulations 28 ! 29 ! 2513 2017-10-04 09:24:39Z kanani 27 30 ! Bugfix for some dopr(_initial)_index values and units connected to 28 31 ! passive-scalar output … … 3901 3904 ENDIF 3902 3905 3906 ! 3903 3907 !-- Vertical nesting: check fine and coarse grid compatibility for data exchange 3904 3908 IF ( vnested ) CALL vnest_check_parameters 3909 3910 ! 3911 !-- Check if topography is read from file in case of complex terrain simulations 3912 IF ( complex_terrain .AND. TRIM( topography ) /= 'read_from_file' ) THEN 3913 message_string = 'complex_terrain requires topography' // & 3914 ' = ''read_from_file''' 3915 CALL message( 'check_parameters', 'PA0472', 1, 2, 0, 6, 0 ) 3916 ENDIF 3917 3918 ! 3919 !-- Check if vertical grid stretching is switched off in case of complex 3920 !-- terrain simulations 3921 IF ( complex_terrain .AND. dz_stretch_level < 100000.0_wp ) THEN 3922 message_string = 'Vertical grid stretching is not allowed for ' // & 3923 'complex_terrain = .T.' 3924 CALL message( 'check_parameters', 'PA0473', 1, 2, 0, 6, 0 ) 3925 ENDIF 3905 3926 3906 3927 CALL location_message( 'finished', .TRUE. )
Note: See TracChangeset
for help on using the changeset viewer.