Opened 10 years ago
Closed 10 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 )
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 , 10 years ago
Description: | modified (diff) |
---|---|
Resolution: | → Fixed |
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Yes, thank you. Good catch.