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.
#1622 (vovvldep and vovvle3t not in output.abort output in diawri.F90) – NEMO

Opened 8 years ago

Closed 8 years ago

Last modified 2 years ago

#1622 closed Bug (fixed)

vovvldep and vovvle3t not in output.abort output in diawri.F90

Reported by: joakim Owned by: nemo
Priority: low Milestone: 2015 release-3.6
Component: OCE Version: v3.6
Severity: Keywords: DIA OPA VVL v3.6
Cc:

Description

NEMO 3.6 does not output cell depth and thickness in the output.abort files, which can be really useful when debugging the code if vvl is used.
T cell depth, vovvldep, is defined but never written to the output, and T cell thickness, vovvle3t is neither defined nor written.
I propose to add the following lines to diawri.F90:

Just after defining the vovvldep around line 1020:

CALL histdef( id_i, "vovvle3t", "T point thickness"     , "m"      ,   &   ! t-point thickness
&          jpi, jpj, nh_i, jpk, 1, jpk, nz_i, 32, clop, zsto, zout )   


and then after writing T, S, U, V etc, around line 1053:

 IF( lk_vvl ) THEN                                                        
   CALL histwrite( id_i, "vovvldep", kt, fsdept_n(:,:,:), jpi*jpj*jpk, idex )! T-cell depth       
   CALL histwrite( id_i, "vovvle3t", kt, fse3t_n (:,:,:), jpi*jpj*jpk, idex )! T-cell thickness  
 END IF

Commit History (0)

(No commits)

Change History (8)

comment:1 Changed 8 years ago by flavoni

  • Milestone set to 2015 nemo_v3_6_STABLE
  • Resolution set to fixed
  • Status changed from new to closed

fix in 3_6_STABLE version 6118 (see same ticket 1370)

comment:2 Changed 8 years ago by nicolasmartin

  • Keywords VVL added; vvl removed

comment:3 Changed 8 years ago by nicolasmartin

  • Keywords nemo_v3_6* added

comment:4 Changed 8 years ago by nicolasmartin

  • Keywords abort removed

comment:5 Changed 8 years ago by nicolasmartin

  • Keywords DIA added; diawri removed

comment:6 Changed 6 years ago by nemo

  • Keywords release-3.6* added; nemo_v3_6* removed

comment:7 Changed 6 years ago by nemo

  • Keywords release-3.6* removed

comment:8 Changed 2 years ago by nemo

  • Keywords OPA v3.6 added
Note: See TracTickets for help on using tickets.