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/0665_mass_heat_salt_fluxes (diff) – NEMO

Changes between Version 4 and Version 5 of ticket/0665_mass_heat_salt_fluxes


Ignore:
Timestamp:
2010-04-30T17:54:24+02:00 (14 years ago)
Author:
gm
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ticket/0665_mass_heat_salt_fluxes

    v4 v5  
    2020The main modifications concern OPA, LIM2 and LIM3. They are: 
    2121 
     22'''(0) stylistic modification''' 
     23 
     24   style change only (results identical) with in particular the suppression of  'thd_ice(_2)' (merged in the 'ice(_2)' module) in order to have in a single line the declaration of a 2D ice array and its associated 1d array  
     25 
     26   For example: in thd_ice_2.F90 you have: 
     27{{{ 
     28  REAL(wp), PUBLIC, DIMENSION(jpij) ::   qldif_1d    !: corresponding to the 2D var  qldif 
     29}}} 
     30   and in ice_2 : 
     31{{{ 
     32   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   qldif         !: heat balance of the lead (or of the open ocean) 
     33}}} 
     34   becomes simply in ice_2.F90 
     35{{{ 
     36   REAL(wp), PUBLIC ::   qldif(jpi,jpj), qldif_1d(jpij)   !: heat balance of the lead (or of the open ocean) 
     37}}} 
     38 
     39   CAUTION : r1855 : this has been done for LIM-2, the LIM-3 case will come later on 
     40 
     41   CAUTION : the changes have to be tested with NVTK  
    2242 
    2343'''(1) heat content of Freezing/Melting ice'''.