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.
Changeset 9888 for NEMO/trunk/src/ICE – NEMO

Changeset 9888 for NEMO/trunk/src/ICE


Ignore:
Timestamp:
2018-07-06T12:33:01+02:00 (6 years ago)
Author:
clem
Message:

improve and debug BDY with sea ice. With this commit there should not be anymore problems in regional configurations (hopefully).

Location:
NEMO/trunk/src/ICE
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • NEMO/trunk/src/ICE/icedyn_adv.F90

    r9885 r9888  
    105105      ! ==> 1) remove negative ice areas and volumes (conservation is ensure) 
    106106      CALL ice_var_zapsmall  
    107       ! ==> 2) remove remaining negative advected fields (conservation is not preserved) 
     107      ! ==> 2) remove remaining negative advected fields (conservation is not preserved) => conservation issue 
    108108      WHERE( v_s (:,:,:)   < 0._wp )   v_s (:,:,:)   = 0._wp 
    109109      WHERE( sv_i(:,:,:)   < 0._wp )   sv_i(:,:,:)   = 0._wp 
  • NEMO/trunk/src/ICE/icevar.F90

    r9725 r9888  
    853853         DO ji = 1, npti 
    854854            ztmelts      = - tmut  * sz_i_1d(ji,jk) 
    855             t_i_1d(ji,jk) = MIN( t_i_1d(ji,jk), ztmelts + rt0 ) ! Force t_i_1d to be lower than melting point 
     855            t_i_1d(ji,jk) = MIN( t_i_1d(ji,jk), ztmelts + rt0 ) ! Force t_i_1d to be lower than melting point => likely conservation issue 
    856856                                                                !   (sometimes zdf scheme produces abnormally high temperatures)    
    857857            e_i_1d(ji,jk) = rhoic * ( cpic * ( ztmelts - ( t_i_1d(ji,jk) - rt0 ) )           & 
Note: See TracChangeset for help on using the changeset viewer.