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.
#1843 (obs operator: non initialized varaible) – NEMO

Opened 7 years ago

Closed 7 years ago

#1843 closed Bug (fixed)

obs operator: non initialized varaible

Reported by: cbricaud Owned by: nemo
Priority: low Milestone:
Component: OCE Version: trunk
Severity: Keywords:
Cc:

Description

Context

ORCA2_LIM3_OBS reference configuration
SETTE test with debug options
idayend used , but non defined

Analysis

in obs_surf_opt, we have "idayend = MOD( kt - kit000 + 1, kdaystp )" only if ldnightav is true

l1253
IF ( idayend == 0 .AND. ldnightav ) THEN

Fix

fist test ldnightav and after idayend == 0 :

IF ( ldnighldnightavtav ) THEN

IF ( idayend == 0 ) THEN

DEALLOCATE( &

& zsurfm &
& )

ENDIF

ENDIF

Commit History (1)

ChangesetAuthorTimeChangeLog
7644cbricaud2017-02-03T17:34:00+01:00

fix ticket #1843 in dev_merge_2016

Change History (1)

comment:1 Changed 7 years ago by cbricaud

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

fixed in dev_merge_2016 at rev 7644
http://forge.ipsl.jussieu.fr/nemo/changeset/7644

Note: See TracTickets for help on using tickets.