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.
#714 (bad if-condition in obcrad) – NEMO

Opened 14 years ago

Closed 14 years ago

#714 closed Bug (fixed)

bad if-condition in obcrad

Reported by: dupontf Owned by: nemo
Priority: low Milestone:
Component: OCE Version: v3.2
Severity: Keywords:
Cc:

Description

For restartibility, the IF-condition at the beginning of each obc_rad subroutines (east, west, ...) should be modified. At line 117, 381, 650 and 924 of obcrad.F90 (tagged 1528) it is now:

IF( kt > nit000) THEN

it should be :

IF( neuler > 0 .OR. kt > nit000) THEN

or as in NEMO2.3:

IF( kt > nit000 .OR. ln_rstart ) THEN

Fred.

Commit History (1)

ChangesetAuthorTimeChangeLog
2152rblod2010-10-04T16:15:24+02:00

Commit for perfect restart in obcrad, see ticket #714

Change History (1)

comment:1 Changed 14 years ago by rblod

  • Resolution set to fixed
  • Status changed from new to closed
Note: See TracTickets for help on using tickets.