Opened 5 years ago
Closed 5 years ago
#2324 closed Bug (fixed)
Incorrect array passed to lbc_lnk in trcbdy.F90
Reported by: | acc | Owned by: | acc |
---|---|---|---|
Priority: | low | Milestone: | |
Component: | TOP | Version: | trunk |
Severity: | minor | Keywords: | |
Cc: |
Description
Context
lbc_lnk improvements made just before the 4.0.1 release have introduced a small error in trcbdy.F90 where the tsa array is passed to lbc_lnk instead of tra.
Analysis
This routine is not tested by the standard SETTE tests. The fix needs to be applied to the trunk and release4.0.1 :(
Fix
Simply correct the cut and paste error by changing:
CALL lbc_lnk( 'bdytra', tsa, 'T', 1., kfillmode=jpfillnothing ,lsend=llsend1, lrecv=llrecv1 )
to
CALL lbc_lnk( 'trcbdy', tra, 'T', 1., kfillmode=jpfillnothing ,lsend=llsend1, lrecv=llrecv1 )
Commit History (2)
Changeset | Author | Time | ChangeLog |
---|---|---|---|
11821 | acc | 2019-10-29T11:08:08+01:00 | Small correction to trcbdy.F90. This fixes #2324 |
11820 | acc | 2019-10-29T10:50:35+01:00 | Small correction to trcbdy.F90. See #2324 |
Change History (2)
comment:1 Changed 5 years ago by acc
comment:2 Changed 5 years ago by acc
- Resolution set to fixed
- Status changed from new to closed
In 11821:
Note: See
TracTickets for help on using
tickets.
In 11820: