Ignore:
Timestamp:
Oct 13, 2008 2:59:11 PM (16 years ago)
Author:
raasch
Message:

ocean-atmosphere coupling realized with MPI-1, adjustments in mrun, mbuild, subjob for lcxt4

File:
1 edited

Legend:

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

    r200 r206  
    44! Actual revisions:
    55! -----------------
    6 !
     6! Bugfix: error in zu index in case of section_xy = -1
    77!
    88! Former revisions:
     
    703703                slices = TRIM( slices ) // TRIM( section_chr ) // '/'
    704704
    705                 WRITE (coor_chr,'(F10.1)')  zu(section(i,1))
     705                IF ( section(i,1) == -1 )  THEN
     706                   WRITE (coor_chr,'(F10.1)')  -1.0
     707                ELSE
     708                   WRITE (coor_chr,'(F10.1)')  zu(section(i,1))
     709                ENDIF
    706710                coor_chr = ADJUSTL( coor_chr )
    707711                coordinates = TRIM( coordinates ) // TRIM( coor_chr ) // '/'
Note: See TracChangeset for help on using the changeset viewer.