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 918 for trunk/NEMO/OPA_SRC/SBC/sbcice_lim.F90 – NEMO

Ignore:
Timestamp:
2008-05-09T12:00:09+02:00 (16 years ago)
Author:
rblod
Message:

Change ice_ocean stress computation, step II, see ticket #128

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/OPA_SRC/SBC/sbcice_lim.F90

    r914 r918  
    7272CONTAINS 
    7373 
    74    SUBROUTINE sbc_ice_lim( kt, kblk ) 
     74   SUBROUTINE sbc_ice_lim( kt, kblk, kico ) 
    7575      !!--------------------------------------------------------------------- 
    7676      !!                  ***  ROUTINE sbc_ice_lim  *** 
     
    9494      INTEGER, INTENT(in) ::   kt      ! ocean time step 
    9595      INTEGER, INTENT(in) ::   kblk    ! type of bulk (=3 CLIO, =4 CORE) 
     96      INTEGER, INTENT(in) ::   kico    ! type of ice-ocean stress 
    9697      !! 
    9798      INTEGER  ::   ji, jj, jk, jl     ! dummy loop indices 
     
    301302         ! Fluxes of mass and heat to the ocean | 
    302303         !--------------------------------------| 
    303                          CALL lim_sbc( kt )              ! Ice/Ocean Mass & Heat fluxes  
     304                         CALL lim_sbc_flx( kt )           ! Ice/Ocean heat freshwater/salt fluxes 
     305         IF( ln_limdyn .AND. kico == 0 )   &              ! Ice/Ocean stresses (only in ice-dynamic case) 
     306            &            CALL lim_sbc_tau( kt, kico )     ! otherwise the atm.-ocean stresses are used everywhere 
     307 
    304308                         !+++++ 
    305309                         WRITE(numout,*) ' - Final ice state after lim_flx    ' 
Note: See TracChangeset for help on using the changeset viewer.