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.
#59 (correct wrong sign of lbc_lnk on scalar variables in limwri.F90) – NEMO

Opened 16 years ago

Closed 16 years ago

Last modified 6 years ago

#59 closed Bug (fixed)

correct wrong sign of lbc_lnk on scalar variables in limwri.F90

Reported by: ctlod Owned by: ctlod
Priority: low Milestone:
Component: LIM2 Version: v1
Severity: Keywords: LIM* surface
Cc:

Description (last modified by ctlod)

The following line in limwri.F90:

IF( jf == 7 .OR. jf == 8 .OR. jf == 11 .OR. jf == 12 .OR. jf == 15 .OR. &

& jf == 23 .OR. jf == 24 .OR. jf == 16 ) THEN
CALL lbc_lnk( zfield, 'T', -1. )

ELSE

CALL lbc_lnk( zfield, 'T', 1. )

ENDIF

must be reduced to:
IF( jf == 7 .OR. jf == 8 .OR. jf == 15 .OR. jf == 16 ) THEN

CALL lbc_lnk( zfield, 'T', -1. )

ELSE

CALL lbc_lnk( zfield, 'T', 1. )

ENDIF

since fields 11 & 12 are scalar and 23 & 24 doesn't exist in this version.

Commit History (1)

ChangesetAuthorTimeChangeLog
805ctlod2008-01-31T10:48:42+01:00

correct wrong sign on scalar fields 11 & 12 when applying lbc_lnk, see ticket:#59

Change History (9)

comment:1 Changed 16 years ago by ctlod

  • Description modified (diff)
  • Owner changed from NEMO team to ctlod
  • Status changed from new to assigned

comment:2 Changed 16 years ago by ctlod

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

comment:3 Changed 8 years ago by nicolasmartin

  • Keywords New Surface module added

comment:4 Changed 8 years ago by nicolasmartin

  • Keywords new added; New removed

comment:5 Changed 8 years ago by nicolasmartin

  • Keywords surface added; Surface removed

comment:6 Changed 8 years ago by nicolasmartin

  • Milestone New Surface Module deleted

Milestone New Surface Module deleted

comment:7 Changed 8 years ago by nicolasmartin

  • Keywords new surface added; NSM removed

comment:8 Changed 8 years ago by nicolasmartin

  • Keywords new removed

comment:9 Changed 6 years ago by nemo

  • Keywords LIM* added
Note: See TracTickets for help on using tickets.