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.
Custom Query – NEMO

Custom Query (2547 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (28 - 30 of 2547)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Ticket Resolution Summary Owner Reporter
#2635 fixed wrong sign in output for ice-ocean sensible flux systeam clem
Description

Context

Output of ice-ocean sensible heat flux has the wrong sign

Fix

replace this line:

IF( iom_use('hfxsensib'  ) )   CALL iom_put( 'hfxsensib'  ,     -qsb_ice_bot * at_i_b         )

By this one:

IF( iom_use('hfxsensib'  ) )   CALL iom_put( 'hfxsensib'  ,      qsb_ice_bot * at_i_b         )
#364 fixed wrong sign in lbc_lnk for gradients in limadv.F90 nemo dupontf
Description

Hi all,

Just a minor bug. In limadv.F90 one has several calls to ensure the proper exchange of data between the different CPUs, the cyclic boundary condition if needed, and the north fold of the domain if also required:

      !-- Lateral boundary conditions
      CALL lbc_lnk( psm , 'T', 1. )
      CALL lbc_lnk( ps0 , 'T', 1. )
      CALL lbc_lnk( psx , 'T', 1. )
      CALL lbc_lnk( psxx, 'T', 1. )
      CALL lbc_lnk( psy , 'T', 1. )
      CALL lbc_lnk( psyy, 'T', 1. )
      CALL lbc_lnk( psxy, 'T', 1. )

Well, because psx and psy are gradients of ps0, they should be treated as velocity, i.e., with a sign change through the north fold. So the correct calls should be for psx and psy:

      CALL lbc_lnk( psx , 'T',-1. )
      CALL lbc_lnk( psy , 'T',-1. )

Fred.

#634 fixed wrong sign for vertical velocity used to advect floats in floblk.F90 nemo sga
Description

In routine floblk.F90, the velocities zwinfl and zwoutfl (lines 139-142 of revision 1152 on the trunk) involve the vertical velocity with its direction reversed. However, the z direction has already been made positive upwards, which is consistent with the coordinate system of the unadulterated w velocity. So I believe this sign change is wrong (but so could I be!). Steven

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Note: See TracQuery for help on using queries.