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 4 of Ticket #1833


Ignore:
Timestamp:
2017-09-28T20:09:08+02:00 (7 years ago)
Author:
nicolasmartin
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1833

    • Property Owner changed from nemo to cbricaud
    • Property Status changed from new to assigned
    • Property Cc cbricaud added
  • Ticket #1833 – Description

    initial v4  
    77 
    88This usually does not matter, but it does matter under the conditions of: 
    9 a) using key_zdfgls 
    10 b) resuming from restart 
    11 c) the restart file does not have one of the zdfgls arrays (en, avt, avm, avmu, avmv or mxln) 
     9a. using key_zdfgls 
     10b. resuming from restart 
     11c. the restart file does not have one of the zdfgls arrays (en, avt, avm, avmu, avmv or mxln) 
    1212 
    1313These conditions can occur if (1) you switch on the zdfgls scheme between restarts, or (2) you use the nesting tools to create an AGRIF restart file (because the nesting tools do not interpolate most of the zdfgls arrays). 
    1414 
    1515Under these conditions, the restarting function gls_rst() calls zdf_gls() several times: 
     16 
     17{{{#!f 
    1618  IF(lwp) WRITE(numout,*) ' ===>>>> : previous run without gls scheme, en and mxln computed by iterative loop' 
    1719  ... 
    1820  DO jit = nit000 + 1, nit000 + 10   ;   CALL zdf_gls( jit )   ;   END DO 
     21}}} 
    1922 
    2023The calls to zdf_gls() make use of bfrua and bfrva, which are uninitialized at this stage.