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.
Ticket Diff – NEMO

Changes between Initial Version and Version 3 of Ticket #2073


Ignore:
Timestamp:
2018-04-04T11:45:25+02:00 (6 years ago)
Author:
nicolasmartin
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2073 – Description

    initial v3  
    77in trcsms_cfc.F90, an out-of-bounds occurs when trying to read and write the cumulative fluxes in the restart 
    88 
     9== Recommendation 
    910 
    10 == Recommendation 
    1111the loop below 
    12 {{{ 
     12 
     13{{{#!f 
    1314         DO jn = jp_cfc0, jp_cfc1 
    1415            CALL iom_rstput( kt, nitrst, numrtw, 'qint_'//ctrcnm(jn), qint_cfc(:,:,jn) ) 
     
    1819should be 
    1920 
    20 {{{ 
     21{{{#!f 
    2122         jl = 0 
    2223         DO jn = jp_cfc0, jp_cfc1 
     
    2425            CALL iom_get( numrtr, jpdom_autoglo, 'qint_'//ctrcnm(jn), qint_cfc(:,:,jl) ) 
    2526         END DO 
    26  
    2727}}} 
    2828...