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.
#2530 (Missing/duplicate diagnostics in ldf_eiv_dia) – NEMO

Opened 4 years ago

Closed 3 years ago

#2530 closed Bug (fixed)

Missing/duplicate diagnostics in ldf_eiv_dia

Reported by: hadcv Owned by: hadcv
Priority: low Milestone: Unscheduled
Component: LDF Version: trunk
Severity: minor Keywords: ldftra, ldf_eiv_dia
Cc:

Description

The V component of the heat and salt transports due to EIV are not correctly defined. The 3D diagnostics are output in place of the vertically integrated diagnostics.

Fix

Make the following changes in ldftra.F90:

  CALL lbc_lnk( 'ldftra', zw2d, 'V', -1.0_wp )
+ CALL lbc_lnk( 'ldftra', zw3d, 'V', -1.0_wp )
  CALL iom_put( "veiv_heattr", zztmp * zw2d )                  !  heat transport in j-direction
- CALL iom_put( "veiv_heattr", zztmp * zw3d )                  !  heat transport in j-direction
+ CALL iom_put( "veiv_heattr3d", zztmp * zw3d )                !  heat transport in j-direction

  CALL lbc_lnk( 'ldftra', zw2d, 'V', -1.0_wp )
+ CALL lbc_lnk( 'ldftra', zw3d, 'V', -1.0_wp )
  CALL iom_put( "veiv_salttr", zztmp * zw2d )                  !  salt transport in j-direction
- CALL iom_put( "veiv_salttr", zztmp * zw3d )                  !  salt transport in j-direction
+ CALL iom_put( "veiv_salttr3d", zztmp * zw3d )                !  salt transport in j-direction

Commit History (0)

(No commits)

Change History (1)

comment:1 Changed 3 years ago by hadcv

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

Fixed in [13982]

Note: See TracTickets for help on using tickets.