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/0842_TRA_TRP (diff) – NEMO

Changes between Version 3 and Version 4 of ticket/0842_TRA_TRP


Ignore:
Timestamp:
2011-06-29T10:46:52+02:00 (13 years ago)
Author:
cetlod
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ticket/0842_TRA_TRP

    v3 v4  
    2424 
    2525In previous version of NEMO, the 3D field of T and S were used for (1) internal damping to levitus (key_tradmp) and (2) for sst and sss restoring. This was the reason why dta_tem and dta_sal where called at the beginning of step before the surface fluxes computation and the tra_dmp call. 
    26 With the new surface module, the optional restoring to sst ans sss now uses another data file containing only the 2D temp and salinity data required for the sea surface restoring. The read of 3D field is now only required if the key_tradmp is defined (and in the initialisation, when starting from levitus). Therefore, the call to dta_tem and _sal can now be moved in tradmp module. Furthermore, it is suggested to combine the two modules (dtatem & dtasal) into a single module as they are almost identical. [[BR]] 
     26With the new surface module, the optional restoring to sst ans sss now uses another data file containing only the 2D temp and salinity data required for the sea surface restoring. The read of 3D field is now only required if the key_tradmp is defined (and in the initialisation, when starting from levitus). Therefore, the call to dta_tem and _sal can now be moved in tradmp module. Furthermore, we combine the two modules (dtatem & dtasal) into a single module ( dtatsd ) as they are almost identical. [[BR]] 
    2727Actions : 
    2828 * merge of dtatem.F90 & dtasal.F90 into dtatsd.F90 
     
    3030 * suppression of key_dtatem & key_dtasal and replace them by one namelist parameter '''ln_tsd_init''' 
    3131 * suppression of key_tradmp and replace it by a namelist parameter '''ln_tradmp''' 
     32 
     33'''(2)''' replace 3D T & S arrays by 4D array TS throughout the code [[BR]] 
     34 
     35 
    3236''' 
    3337----