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.
#23 (iom_rstdimg.F90 : bug in restart name) – NEMO

Opened 16 years ago

Closed 16 years ago

#23 closed Bug (fixed)

iom_rstdimg.F90 : bug in restart name

Reported by: smasson Owned by: somebody
Priority: normal Milestone:
Component: OCE Version: v2
Severity: Keywords:
Cc:

Description

there is an incohenrence between written and read restart_files, due to the coding of cpu number in the file name. For dimg restart files (READ) , the name uses 'narea' as cpu number. For dimg restart files (WRITE), the name still uses 'narea -1' as cpu number.

fix line 108 in iomrstdimg, in routine iomrstdimg_open :

! JMM Bug fix
! WRITE(cltmp,'(a,a,i4.4,a)') cdname(1:iln-1), , narea-1, '.dimg'
WRITE(cltmp,'(a,a,i4.4,a)') cdname(1:iln-1),
, narea, '.dimg'

Commit History (1)

ChangesetAuthorTimeChangeLog
598opalod2007-02-20T15:16:53+01:00

nemo_v2_bugfix_006 : CT : - avoid to change sign of 2 surface fluxes (#11 & #12) when calling lbc_lnk

  • remove fields #23 & #24 which doesn't exist

Change History (2)

comment:1 Changed 16 years ago by smasson

! JMM Bug fix
! WRITE(cltmp,'(a,a,i4.4,a)') cdname(1:iln-1), , narea-1, '.dimg'
WRITE(cltmp,'(a,a,i4.4,a)') cdname(1:iln-1),
, narea, '.dimg'

comment:2 Changed 16 years ago by smasson

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

fixed in changeset:741

Note: See TracTickets for help on using tickets.