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 (46 - 48 of 2547)

Ticket Resolution Summary Owner Reporter
#625 fixed About limtrp and limtrp_2 somebody ch
Description

In these 2 routines, the call to the advection routine lim_adv_x is done alternately before and after the call to lim_adv_y. Why is the switch done in function of the values of nday?

  • In limmsh, the coriolis parameter is recomputed in function of the latitude. This can be a pb if a cartesian grid is used.
#2401 fixed access undefined values in a control print of cpl_oasis3 systeam smasson
Description

Context

print in lines 446-448:

WRITE(numout,*) '     - Minimum value is ', MINVAL(pdata(:,:,jc))
WRITE(numout,*) '     - Maximum value is ', MAXVAL(pdata(:,:,jc))
WRITE(numout,*) '     -     Sum value is ',    SUM(pdata(:,:,jc))

access undefined values as pdata is defined only from nldi to nlei and from nldj to nlej

Analysis

this bug was partially fixed in [12132], when changing lines 365-367 but I forgot to look a little bit further down and to change also lines 446-448

Fix

trivial bugfix: replace pdata(:,:,jc) by pdata(nldi:nlei,nldj:nlej,jc)

#2402 fixed access undefined values in a control print of cpl_oasis3 systeam smasson
Description

same as #2401 but for release-4.0-HEAD

Context

print in lines 446-448:

WRITE(numout,*) '     - Minimum value is ', MINVAL(pdata(:,:,jc))
WRITE(numout,*) '     - Maximum value is ', MAXVAL(pdata(:,:,jc))
WRITE(numout,*) '     -     Sum value is ',    SUM(pdata(:,:,jc))

access undefined values as pdata is defined only from nldi to nlei and from nldj to nlej

Analysis

this bug was partially fixed in [12132], when changing lines 365-367 but I forgot to look a little bit further down and to change also lines 446-448

Fix

trivial bugfix: replace pdata(:,:,jc) by pdata(nldi:nlei,nldj:nlej,jc)

Note: See TracQuery for help on using queries.