Changes between Initial Version and Version 2 of Ticket #2582
- Timestamp:
- 2020-11-25T12:43:35+01:00 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2582 – Description
initial v2 10 10 11 11 1. 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 12 13 true_zbotpres(:,:) = zbotpres(:,:)/rau0 + (sshn(:,:) + thick0(:,:)) * g * (rau0 - 1) 13 14 }}} 14 15 2. The correction to diaar5.F90 to retrieve the true bottom pressure is: 16 {{{#!f 15 17 184 zztmp = grav * 1.e-4_wp ! recover pressure from pressure anomaly and cover to dbar = 1.e4 Pa 16 18 185 zbotpres(:,:) = zztmp * ( zbotpres(:,:) + rho0 * (ssh(:,:,Kmm) + thick0(:,:)) ) 17 19 }}} 18 20 ...