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 9398 – NEMO

Changeset 9398


Ignore:
Timestamp:
2018-03-14T14:33:12+01:00 (6 years ago)
Author:
clem
Message:

dev_merge_2017: change ice routines so that reproducibility issue is solved for the ice (but there is still repro issue between r8996 and r9012 in dev_CNRS_2017 after 268 time steps of orca2-lim3-pisces)

Location:
branches/2017/dev_merge_2017/NEMOGCM/NEMO/LIM_SRC_3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_merge_2017/NEMOGCM/NEMO/LIM_SRC_3/iceitd.F90

    r9169 r9398  
    119119            ! Compute thickness change in each ice category 
    120120            DO ji = 1, npti 
    121                zdhice(ji,jl) = h_i_2d(ji,jl) - h_ib_2d(ji,jl) 
     121               IF( a_i_2d(ji,jl) > epsi10 )   zdhice(ji,jl) = h_i_2d(ji,jl) - h_ib_2d(ji,jl)   ! clem: if statement is necessary for repro 
    122122            END DO 
    123123         END DO 
  • branches/2017/dev_merge_2017/NEMOGCM/NEMO/LIM_SRC_3/icethd_ent.F90

    r9019 r9398  
    103103      END DO 
    104104 
    105       zeh_cum1(1:npti,0) = 0._wp  
     105      zeh_cum1(1:npti,0:nlay_i) = 0._wp  
    106106      ! new cumulative q*h => linear interpolation 
    107107      DO jk0 = 1, nlay_i+1 
Note: See TracChangeset for help on using the changeset viewer.