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 11495 for NEMO/branches/2019/ENHANCE-02_ISF_nemo/src/OCE/ISF/isfcavgam.F90 – NEMO

Ignore:
Timestamp:
2019-09-03T17:45:00+02:00 (5 years ago)
Author:
mathiot
Message:

ENHANCE-02_ISF: fix issue in the computation of utbl and vtbl + cosmetic change (ticket #2142)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2019/ENHANCE-02_ISF_nemo/src/OCE/ISF/isfcavgam.F90

    r11488 r11495  
    5959         ! nothing to do 
    6060      CASE ('ad15', 'hj99') 
    61          CALL isf_tbl(un(:,:,:) ,zutbl(:,:),'U') 
    62          CALL isf_tbl(vn(:,:,:) ,zvtbl(:,:),'V') 
     61         ! compute velocity in tbl 
     62         CALL isf_tbl(un(:,:,:) ,zutbl(:,:),'U', miku, rhisf_tbl_cav) 
     63         CALL isf_tbl(vn(:,:,:) ,zvtbl(:,:),'V', mikv, rhisf_tbl_cav) 
     64         ! 
     65         ! mask velocity in tbl with ice shelf mask 
     66         !zutbl(:,:) = zutbl(:,:) * mskisf_cav(:,:) 
     67         !zvtbl(:,:) = zvtbl(:,:) * mskisf_cav(:,:) 
     68         ! 
     69         ! output 
    6370         CALL iom_put('utbl',zutbl(:,:)) 
    6471         CALL iom_put('vtbl',zvtbl(:,:)) 
Note: See TracChangeset for help on using the changeset viewer.