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 877 for branches – NEMO

Changeset 877 for branches


Ignore:
Timestamp:
2008-04-04T14:07:44+02:00 (16 years ago)
Author:
ctlod
Message:

dev_001_SBC: use the tmu(:,:) sea-ice velocity mask when computing ocean mean velocities at I-points, see ticket: #102

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev_001_SBC/NEMO/OPA_SRC/SBC/sbcice_lim.F90

    r871 r877  
    107107         DO jj = 2, jpj 
    108108            DO ji = fs_2, jpi   ! vector opt. 
    109                ui_oce(ji,jj) = 0.5 * ( ssu_m(ji-1,jj  ) + ssu_m(ji-1,jj-1) ) 
    110                vi_oce(ji,jj) = 0.5 * ( ssv_m(ji  ,jj-1) + ssv_m(ji-1,jj-1) ) 
     109               ui_oce(ji,jj) = 0.5 * ( ssu_m(ji-1,jj  ) + ssu_m(ji-1,jj-1) ) * tmu(ji,jj) 
     110               vi_oce(ji,jj) = 0.5 * ( ssv_m(ji  ,jj-1) + ssv_m(ji-1,jj-1) ) * tmu(ji,jj) 
    111111            END DO 
    112112         END DO 
Note: See TracChangeset for help on using the changeset viewer.