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.
#1109 (bugs in diaptr.F90) – NEMO

Opened 11 years ago

Closed 11 years ago

Last modified 8 years ago

#1109 closed Bug (fixed)

bugs in diaptr.F90

Reported by: DuoYang Owned by: nemo
Priority: low Milestone:
Component: OCE Version: v3.4
Severity: Keywords: DIA
Cc:

Description

There are bugs in module diaptr at version nemo_v3_4_1, which crashed the model (orca1_lim2) when setting ln_diaptr=true.

565: CALL wrk_alloc( jpi , zphi , zfoo )
566: CALL wrk_alloc( jpi , jpk, z_1 )
...
880: CALL wrk_dealloc( jpi , zphi , zfoo )
881: CALL wrk_dealloc( jpi , jpk, z_1 )

fixed as

565: CALL wrk_alloc( jpj , zphi , zfoo )
566: CALL wrk_alloc( jpj , jpk, z_1 )
...
880: CALL wrk_dealloc( jpj , zphi , zfoo )
881: CALL wrk_dealloc( jpj , jpk, z_1 )

The bugs also exist in lines 564, 565, 879 and 880 of nemo_v3_4.

Duo

Commit History (2)

ChangesetAuthorTimeChangeLog
3913smasson2013-06-12T21:45:17+02:00

v3_4_STABLE: bugfix in diaptr, see ticket #1109

3912smasson2013-06-12T21:43:25+02:00

trunk: bugfix in diaptr, see ticket #1109

Change History (2)

comment:1 Changed 11 years ago by smasson

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

done in the trunk, see changeset r3912
done in the v3_4_STABLE, see changeset r3913

comment:2 Changed 8 years ago by nicolasmartin

  • Keywords DIA added; diaptr removed
Note: See TracTickets for help on using tickets.