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.
#2402 (access undefined values in a control print of cpl_oasis3) – NEMO

Opened 4 years ago

Closed 4 years ago

Last modified 2 years ago

#2402 closed Bug (fixed)

access undefined values in a control print of cpl_oasis3

Reported by: smasson Owned by: systeam
Priority: low Milestone:
Component: SBC Version: v4.0
Severity: minor Keywords: v4.0
Cc:

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)

Commit History (0)

(No commits)

Change History (3)

comment:1 Changed 4 years ago by smasson

fixed in [12528]

comment:2 Changed 4 years ago by smasson

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

comment:3 Changed 2 years ago by nemo

  • Keywords v4.0 added
Note: See TracTickets for help on using tickets.