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 1 of Ticket #2082


Ignore:
Timestamp:
2018-05-08T19:52:15+02:00 (6 years ago)
Author:
nicolasmartin
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2082 – Description

    initial v1  
    66 
    77For a fix: in agrif_create_coordinates.f90, change 
     8{{{#!f 
    89  G1%glamu = G1%glamf 
    910  G1%glamv = G1%glamt 
     11}}} 
    1012to 
     13{{{#!f 
    1114  CALL agrif_interp(G0%glamu,G1%glamu,'U') 
    1215  CALL agrif_interp(G0%glamv,G1%glamv,'V') 
     16}}} 
    1317and also change 
     18{{{#!f 
    1419  G1%gphiu = G1%gphit 
    1520  G1%gphiv = G1%gphif 
     21}}} 
    1622to 
     23{{{#!f 
    1724  CALL agrif_interp(G0%gphiu,G1%gphiu,'U') 
    1825  CALL agrif_interp(G0%gphiv,G1%gphiv,'V') 
    19  
     26}}}