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 2 of Ticket #1685


Ignore:
Timestamp:
2017-09-27T18:53:40+02:00 (7 years ago)
Author:
nicolasmartin
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1685

    • Property Keywords DMP added; damping removed
    • Property Owner changed from nemo to mathiot
    • Property Status changed from new to assigned
  • Ticket #1685 – Description

    initial v2  
    1 = Description = 
     1= Description 
     2 
    23In trunk and in 3.6_STABLE, in the dmp routine (tradmp, dyndmp (C1D) and trcdmp (TOP)), the threshold to decide if we are in the turbocline or not, is hard coded (5.e-4_wp). 
    34 
    4 {{{ 
     5{{{#!f 
    56avt(ji,jj,jk) <= 5.e-4_wp 
    67}}} 
    78 
     9= Recommendation 
    810 
    9 = Analysis = 
    10  
    11  
    12 = Recommendation = 
    1311Replace the 5.e-4_wp by avt_c. avt_c is set to 5.e-4_wp in zdfmxl.  
    1412 
    15 {{{ 
     13{{{#!f 
    1614avt(ji,jj,jk) <= avt_c 
    1715}}} 
     
    1917or replace the test by a test on depth as it is done for the mixed layer: 
    2018 
    21 {{{ 
     19{{{#!f 
    2220gdept_n(ji,jj,jk) >= hmld (ji,jj)  
    2321}}}