Opened 9 years ago

Closed 9 years ago

#671 closed bug (Fixed)

A small bug in mod_boundary.F

Reported by: leon Owned by: arango
Priority: critical Milestone: Adjoint Based Algorithms
Component: Adjoint Version: 3.7
Keywords: Cc: arango

Description (last modified by arango)

In Modules/mod_boundary.F line 1100

      IF (tl_LBC(isouth,isUbar,ng)%acquire) THEN
        allocate ( BOUNDARY(ng) % tl_ubar_north(LBi:UBi) )
      END IF

we need to have instead

     IF (tl_LBC(inorth,isUbar,ng)%acquire) THEN
        allocate ( BOUNDARY(ng) % tl_ubar_north(LBi:UBi) )
      END IF

Change History (1)

comment:1 by arango, 9 years ago

Description: modified (diff)
Resolution: Fixed
Status: newclosed

Yes, thank you. Good catch.

Note: See TracTickets for help on using tickets.