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 869 for trunk/NEMO/LIM_SRC_3/limrhg.F90 – NEMO

Ignore:
Timestamp:
2008-03-26T10:21:54+01:00 (16 years ago)
Author:
rblod
Message:

Parallelisation of LIM3. This commit seems to ensure the reproducibility mono/mpp. See ticket #77.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/LIM_SRC_3/limrhg.F90

    r868 r869  
    314314 
    315315      !-Initialise stress tensor  
    316       zs1(:,:)  = stress1_i(:,:) 
     316      zs1(:,:)  = stress1_i(:,:)  
    317317      zs2(:,:)  = stress2_i(:,:) 
    318318      zs12(:,:) = stress12_i(:,:) 
     
    387387              END DO 
    388388           END DO 
     389           CALL lbc_lnk( v_ice1(:,:), 'U', -1. ) 
     390           CALL lbc_lnk( u_ice2(:,:), 'V', -1. ) 
    389391 
    390392!CDIR NOVERRCHK 
     
    454456                    &        - dtotel*( (1.0-alphaevp)*ecc2*zs12(ji,jj) - zds(ji,jj) / & 
    455457                    &          ( 2.0*deltac(ji,jj) ) * zpreshc(ji,jj))) & 
    456                     &         / ( 1.0 + alphaevp*ecc2*dtotel ) 
     458                    &         / ( 1.0 + alphaevp*ecc2*dtotel )  
    457459 
    458460              END DO ! ji 
     
    625627      END DO 
    626628 
     629      CALL lbc_lnk( u_ice(:,:), 'U', -1. )  
     630      CALL lbc_lnk( v_ice(:,:), 'V', -1. )  
     631 
    627632      DO jj = k_j1+1, k_jpj-1  
    628633         DO ji = fs_2, fs_jpim1 
     
    641646      END DO 
    642647 
    643       CALL lbc_lnk( u_ice2(:,:), 'U', -1. )  
    644       CALL lbc_lnk( v_ice1(:,:), 'V', -1. ) 
     648      CALL lbc_lnk( u_ice2(:,:), 'V', -1. )  
     649      CALL lbc_lnk( v_ice1(:,:), 'U', -1. ) 
    645650 
    646651      ! Recompute delta, shear and div, inputs for mechanical redistribution  
Note: See TracChangeset for help on using the changeset viewer.