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.
#830 (Minor bug in PISCES/p4zsed.F90) – NEMO

Opened 13 years ago

Closed 13 years ago

#830 closed Bug (fixed)

Minor bug in PISCES/p4zsed.F90

Reported by: cetlod Owned by: nemo
Priority: low Milestone:
Component: TOP Version: v3.3
Severity: Keywords: PISCES
Cc:

Description

Some worked arrays are still defined in p4zsed.F90 in static mode :

REAL(wp) , DIMENSION (jpi,jpj) :: riverdoc, river, ndepo
REAL(wp) , DIMENSION (jpi,jpj,jpk) :: cmask

change to :

USE wrk_nemo, ONLY: zriverdoc => wrk_2d_1, zriver => wrk_2d_2, zndepo => wrk_2d_3
USE wrk_nemo, ONLY: zcmask => wrk_3d_2

Commit History (1)

ChangesetAuthorTimeChangeLog
2774cetlod2011-06-01T15:13:02+02:00

PISCES trunk : Use dynamical allocation for some local arrays, see ticket #830

Change History (1)

comment:1 Changed 13 years ago by cetlod

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

Done, see changeset:2774

Note: See TracTickets for help on using tickets.