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 6 of Ticket #1836


Ignore:
Timestamp:
2017-09-27T19:14:05+02:00 (7 years ago)
Author:
nicolasmartin
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1836

    • Property Status changed from new to closed
    • Property Cc mchekki added
    • Property Component changed from OPA to AGRIF
    • Property Owner changed from nemo to mchekki
    • Property Resolution changed from to fixed
  • Ticket #1836 – Description

    initial v6  
    1 = Context = 
     1= Context 
     2 
    23In AGRIF simulations the #child_timing files only contain headers without any timing-values. 
    34 
    4 = Analysis = 
     5= Analysis 
     6 
    57In nemogcm.F90, timing_finalize is incorrectly called for the children; consequently only timing values for the parent grid are provided: 
    68 
    7 {{{ 
    8  
     9{{{#!f 
    910191       ! 
    1011192 #if defined key_agrif 
     
    2021202       CALL nemo_closefile 
    2122203       ! 
     23}}} 
    2224 
    23 }}} 
    24 = Fix = 
     25= Fix 
     26 
    2527Remove IF( .NOT. Agrif_Root() ) conditon: 
    2628 
    27 {{{ 
    28  
     29{{{#!f 
    2930191       ! 
    3031192 #if defined key_agrif 
     
    4041202       CALL nemo_closefile 
    4142203       ! 
    42  
    4343}}}