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

Changeset 288


Ignore:
Timestamp:
2005-09-22T12:44:36+02:00 (19 years ago)
Author:
opalod
Message:

nemo_v1_bugfix_005 : CT : remove few bugs in the Sea-ice component related to the reproductibility problem of mono .vs. multi processors simulations

Location:
trunk/NEMO
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/LIM_SRC/limdyn.F90

    r258 r288  
    153153 
    154154         ENDIF 
    155  
    156          u_ice(:,1) = 0.e0       !ibug  est-ce vraiment necessaire? 
    157          v_ice(:,1) = 0.e0 
    158155 
    159156         IF(ln_ctl)   THEN  
  • trunk/NEMO/LIM_SRC/limhdf.F90

    r258 r288  
    1515   USE in_out_manager 
    1616   USE ice 
    17 !  USE limdyn 
    1817   USE lbclnk 
    1918   USE lib_mpp 
     
    148147         END DO 
    149148 
     149         ! lateral boundary condition on ptab 
     150         CALL lbc_lnk( zrlx, 'T', 1. ) 
     151 
    150152         ! convergence test 
    151153         zconv = 0.e0 
     
    162164            END DO 
    163165         END DO 
    164  
    165          ! lateral boundary condition on ptab 
    166          CALL lbc_lnk( ptab, 'T', 1. ) 
    167166         !                                         !========================== 
    168167      END DO                                       ! end of sub-time step loop 
    169168      !                                            !========================== 
    170169 
    171       ptab(:,:) = ptab(:,:) 
     170      ptab(:,:) = zrlx(:,:) 
     171 
    172172      IF(ln_ctl)   THEN 
    173173         zrlx(:,:) = ptab(:,:) - ptab0(:,:) 
  • trunk/NEMO/OPA_SRC/lbclnk.F90

    r247 r288  
    335335 
    336336         CASE ( 'I' )                                  ! ice U-V point 
     337            pt2d(:, 1 ) = 0.e0 
    337338            pt2d(2,jpj) = psgn * pt2d(3,jpj-1) 
    338339            DO ji = 3, jpi 
     
    387388 
    388389         CASE ( 'I' )                                  ! ice U-V point 
     390            pt2d( : , 1 ) = 0.e0 
    389391            pt2d( 2 ,jpj) = 0.e0 
    390392            DO ji = 2 , jpim1 
Note: See TracChangeset for help on using the changeset viewer.