Changeset 1994
- Timestamp:
- Aug 15, 2016 9:52:21 AM (8 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/check_parameters.f90
r1993 r1994 19 19 ! Current revisions: 20 20 ! ----------------- 21 ! 21 ! Add missing check for cloud_physics and cloud_droplets 22 22 ! 23 23 ! Former revisions: … … 973 973 CALL message( 'check_parameters', 'PA0029', 1, 2, 0, 6, 0 ) 974 974 ENDIF 975 ! 976 !-- Check for proper settings for microphysics 977 IF ( cloud_physics .AND. cloud_droplets ) THEN 978 message_string = 'cloud_physics = .TRUE. is not allowed with ' // & 979 'cloud_droplets = .TRUE.' 980 CALL message( 'check_parameters', 'PA0442', 1, 2, 0, 6, 0 ) 981 ENDIF 975 982 976 983 ! -
palm/trunk/SOURCE/init_grid.f90
r1983 r1994 19 19 ! Current revisions: 20 20 ! ----------------- 21 ! 21 ! Bugfix in definition of generic topography 22 22 ! 23 23 ! Former revisions: … … 642 642 nzb_local(MAX(nys,bys):MIN(nyn,byn),MAX(nxl,bxl):MIN(nxr,bxr)) = bh 643 643 644 CALL exchange_horiz_2d_int( nzb_local, nys, nyn, nxl, nxr, nbgp ) 645 644 646 CASE ( 'single_street_canyon' ) 645 647 ! … … 715 717 nzb_local(MAX(nys,cys+1):MIN(nyn,cyn-1),:) = 0 716 718 ENDIF 719 720 CALL exchange_horiz_2d_int( nzb_local, nys, nyn, nxl, nxr, nbgp ) 717 721 718 722 CASE ( 'read_from_file' )
Note: See TracChangeset
for help on using the changeset viewer.