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 #2102


Ignore:
Timestamp:
2018-06-15T16:16:44+02:00 (6 years ago)
Author:
nicolasmartin
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2102 – Description

    initial v1  
    1 {{{#!comment 
    2 This page can be reloaded when you modify a ticket field so be careful to set all fields before writing the ticket description below. 
    3 If necessary, you can click on the link 'Restore Form' in the contextual menu upper right to retrieve the previous state after an unwanted page update. 
    4 }}} 
    51== Context 
    62 
     
    106 
    117The code actually holds this 
    12 {{{ 
     8{{{#!f 
    139 fsahm_spf(ji,jj) = 0.25_wp * visc_dyn * ( ztabramp(ji,jj) + ztabramp(ji  ,jj+1) & 
    1410                                       &  +ztabramp(ji,jj) + ztabramp(ji+1,jj  ) ) 
     
    1713== Fix 
    1814It should be that: 
    19 {{{ 
     15{{{#!f 
    2016 fsahm_spf(ji,jj) = 0.25_wp * visc_dyn * ( ztabramp(ji  ,jj  ) + ztabramp(ji  ,jj+1) & 
    2117                                       &  +ztabramp(ji+1,jj+1) + ztabramp(ji+1,jj  ) )