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 2076 for branches/devmercator2010/NEMO/LIM_SRC_2/limtrp_2.F90 – NEMO

Ignore:
Timestamp:
2010-09-08T18:17:25+02:00 (14 years ago)
Author:
cbricaud
Message:

add change dev_1784_EVP

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/devmercator2010/NEMO/LIM_SRC_2/limtrp_2.F90

    r2072 r2076  
    6767      !!        !  01-05 (G. Madec, R. Hordoir) opa norm 
    6868      !!   2.0  !  04-01 (G. Madec, C. Ethe)  F90, mpp 
     69      !!   3.3  !  09-05  (G.Garric) addition of the lim2_evp case 
    6970      !!--------------------------------------------------------------------- 
    7071      INTEGER, INTENT(in) ::   kt     ! number of iteration 
     
    107108         ! zvbord factor between 1 and 2 to take into account slip or no-slip boundary conditions.         
    108109         zvbord = 1.0 + ( 1.0 - bound ) 
     110#if defined key_lim2_vp 
    109111         DO jj = 1, jpjm1 
    110112            DO ji = 1, jpim1   ! NO vector opt. 
     
    116118         CALL lbc_lnk( zui_u, 'U', -1. ) 
    117119         CALL lbc_lnk( zvi_v, 'V', -1. ) 
     120#else 
     121        zui_u(:,:)=u_ice(:,:) 
     122        zvi_v(:,:)=v_ice(:,:) 
     123#endif 
    118124 
    119125         ! CFL test for stability 
Note: See TracChangeset for help on using the changeset viewer.