New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
#2324 (Incorrect array passed to lbc_lnk in trcbdy.F90) – NEMO

Opened 4 years ago

Closed 4 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)

ChangesetAuthorTimeChangeLog
11821acc2019-10-29T11:08:08+01:00

Small correction to trcbdy.F90. This fixes #2324

11820acc2019-10-29T10:50:35+01:00

Small correction to trcbdy.F90. See #2324

Change History (2)

comment:1 Changed 4 years ago by acc

In 11820:

Error: Failed to load processor CommitTicketReference
No macro or processor named 'CommitTicketReference' found

comment:2 Changed 4 years ago by acc

  • Resolution set to fixed
  • Status changed from new to closed

In 11821:

Error: Failed to load processor CommitTicketReference
No macro or processor named 'CommitTicketReference' found
Note: See TracTickets for help on using tickets.