Ignore:
Timestamp:
Dec 9, 2008 6:00:48 PM (15 years ago)
Author:
letzel
Message:
  • NCL scripts in trunk/SCRIPTS/NCL updated
File:
1 edited

Legend:

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

    r211 r217  
    44! Actual revisions:
    55! -----------------
     6! +topography_grid_convention
    67! Former file user_interface.f90 split into one file per subroutine
    78!
     
    1516!------------------------------------------------------------------------------!
    1617
     18    USE control_parameters
    1719    USE statistics
    1820    USE user
     
    4143    ENDIF
    4244
    43 
     45    IF ( TRIM( topography ) /= 'flat' )  THEN
     46       WRITE ( io, 300 )
     47       IF ( TRIM( topography_grid_convention ) == ' ' )  THEN
     48          IF ( TRIM( topography ) == 'single_building' )  THEN
     49             WRITE ( io, 301 )
     50          ELSEIF ( TRIM( topography ) == 'read_from_file' )  THEN
     51             WRITE ( io, 302 )
     52          ENDIF
     53       ELSEIF ( TRIM( topography_grid_convention ) == 'cell_edge' )  THEN
     54          WRITE ( io, 301 )
     55       ELSEIF ( TRIM( topography_grid_convention ) == 'cell_center' )  THEN
     56          WRITE ( io, 302 )
     57       ENDIF
     58    ENDIF
    4459
    4560!
     
    5166200 FORMAT (' Output of profiles and time series for following regions:' /)
    5267201 FORMAT (4X,'Region ',I1,':   ',A)
     68300 FORMAT (' Topography grid definition convention:'/)
     69301 FORMAT (' cell edge (staggered grid points'/  &
     70            ' (u in x-direction, v in y-direction))' /)
     71302 FORMAT (' cell center (scalar grid points)' /)
    5372
    5473
Note: See TracChangeset for help on using the changeset viewer.