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 8332 for branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO – NEMO

Ignore:
Timestamp:
2017-07-13T19:39:16+02:00 (7 years ago)
Author:
clem
Message:

1D fields need also to be calculated at the boundaries otherwise a lbc_lnk is missing

Location:
branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/LIM_SRC_3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/LIM_SRC_3/limthd.F90

    r8327 r8332  
    214214         ! select ice covered grid points 
    215215         nidx = 0 ; idxice(:) = 0 
    216          DO jj = 2, jpjm1 
    217             DO ji = 2, jpim1 
     216         DO jj = 1, jpj 
     217            DO ji = 1, jpi 
    218218               IF ( a_i(ji,jj,jl) > epsi10 ) THEN      
    219219                  nidx         = nidx  + 1 
  • branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/LIM_SRC_3/limthd_da.F90

    r8327 r8332  
    113113      ! select ice covered grid points 
    114114      nidx = 0 ; idxice(:) = 0 
    115       DO jj = 2, jpjm1 
    116          DO ji = 2, jpim1 
     115      DO jj = 1, jpj 
     116         DO ji = 1, jpi 
    117117            IF ( at_i(ji,jj) > epsi10 ) THEN 
    118118               nidx         = nidx  + 1 
  • branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/LIM_SRC_3/limthd_lac.F90

    r8327 r8332  
    226226      ! This occurs if open water energy budget is negative (cooling) and there is no landfast ice 
    227227      nidx = 0 ; idxice(:) = 0 
    228       DO jj = 2, jpjm1 
    229          DO ji = 2, jpim1 
     228      DO jj = 1, jpj 
     229         DO ji = 1, jpi 
    230230            IF ( qlead(ji,jj)  <  0._wp .AND. tau_icebfr(ji,jj) == 0._wp ) THEN 
    231231               nidx = nidx + 1 
Note: See TracChangeset for help on using the changeset viewer.