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


Ignore:
Timestamp:
2020-11-25T12:43:35+01:00 (4 years ago)
Author:
nemo
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2582 – Description

    initial v2  
    1010 
    11111. For already existing model outputs with the variable zbotpres (pbo in the CMIP nomenclature): the bottom pressure can be retrieved offline by combining zbtotpres and sshn as follows: 
     12{{{#!f 
    1213true_zbotpres(:,:) = zbotpres(:,:)/rau0 + (sshn(:,:) + thick0(:,:)) * g * (rau0 - 1) 
    13  
     14}}} 
    14152. The correction to diaar5.F90 to retrieve the true bottom pressure is: 
     16{{{#!f 
    1517184              zztmp = grav * 1.e-4_wp               ! recover pressure from pressure anomaly and cover to dbar = 1.e4 Pa 
    1618185              zbotpres(:,:) = zztmp * ( zbotpres(:,:) + rho0 * (ssh(:,:,Kmm) + thick0(:,:)) ) 
    17  
     19}}} 
    1820...