Changeset 274 for palm/trunk/SOURCE/init_grid.f90
- Timestamp:
- Mar 26, 2009 3:11:21 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/init_grid.f90
r254 r274 367 367 IF ( ( bxl < 1 ) .OR. ( bxr > nx-1 ) .OR. ( bxr < bxl+3 ) .OR. & 368 368 ( bys < 1 ) .OR. ( byn > ny-1 ) .OR. ( byn < bys+3 ) ) THEN 369 WRITE( message_string, * ) 'inconsistent building parameters:', &370 371 369 WRITE( message_string, * ) 'inconsistent building parameters:', & 370 '& bxl=', bxl, 'bxr=', bxr, 'bys=', bys, & 371 'byn=', byn, 'nx=', nx, 'ny=', ny 372 372 CALL message( 'init_grid', 'PA0203', 1, 2, 0, 6, 0 ) 373 373 ENDIF … … 417 417 ( ch < 3 ) ) THEN 418 418 WRITE( message_string, * ) 'inconsistent canyon parameters:', & 419 '&cxl=', cxl, 'cxr=', cxr, &420 'cwx=', cwx, &419 '&cxl=', cxl, 'cxr=', cxr, & 420 'cwx=', cwx, & 421 421 'ch=', ch, 'nx=', nx, 'ny=', ny 422 422 CALL message( 'init_grid', 'PA0205', 1, 2, 0, 6, 0 ) … … 426 426 ( ch < 3 ) ) THEN 427 427 WRITE( message_string, * ) 'inconsistent canyon parameters:', & 428 '&cys=', cys, 'cyn=', cyn, &429 'cwy=', cwy, &428 '&cys=', cys, 'cyn=', cyn, & 429 'cwy=', cwy, & 430 430 'ch=', ch, 'nx=', nx, 'ny=', ny 431 431 CALL message( 'init_grid', 'PA0206', 1, 2, 0, 6, 0 ) 432 432 ENDIF 433 433 ENDIF 434 IF ( canyon_width_x /= 9999999.9 .AND. canyon_width_y /= 9999999.9 ) 434 IF ( canyon_width_x /= 9999999.9 .AND. canyon_width_y /= 9999999.9 ) & 435 435 THEN 436 message_string = 'inconsistent canyon parameters:' // &436 message_string = 'inconsistent canyon parameters:' // & 437 437 '&street canyon can only be oriented' // & 438 438 '&either in x- or in y-direction' … … 507 507 !-- Consistency checks 508 508 IF ( MINVAL( nzb_local ) < 0 .OR. MAXVAL( nzb_local ) > nz + 1 ) THEN 509 WRITE( message_string, * ) 'nzb_local values are outside the', &510 'model domain',&511 512 509 WRITE( message_string, * ) 'nzb_local values are outside the', & 510 'model domain', & 511 '&MINVAL( nzb_local ) = ', MINVAL(nzb_local), & 512 '&MAXVAL( nzb_local ) = ', MAXVAL(nzb_local) 513 513 CALL message( 'init_grid', 'PA0210', 1, 2, 0, 6, 0 ) 514 514 ENDIF
Note: See TracChangeset
for help on using the changeset viewer.