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 9076 for branches/2017/dev_merge_2017/NEMOGCM/NEMO/OPA_SRC – NEMO

Ignore:
Timestamp:
2017-12-15T14:59:08+01:00 (6 years ago)
Author:
vancop
Message:

monocat to virtual_itd

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_merge_2017/NEMOGCM/NEMO/OPA_SRC/SBC/sbcblk.F90

    r9033 r9076  
    975975    
    976976 
    977    SUBROUTINE blk_ice_qcn( k_monocat, ptsu, ptb, phs, phi ) 
     977   SUBROUTINE blk_ice_qcn( k_virtual_itd, ptsu, ptb, phs, phi ) 
    978978      !!--------------------------------------------------------------------- 
    979979      !!                     ***  ROUTINE blk_ice_qcn  *** 
     
    990990      !! 
    991991      !!--------------------------------------------------------------------- 
    992       INTEGER                   , INTENT(in   ) ::   k_monocat   ! single-category option 
    993       REAL(wp), DIMENSION(:,:,:), INTENT(inout) ::   ptsu        ! sea ice / snow surface temperature 
    994       REAL(wp), DIMENSION(:,:)  , INTENT(in   ) ::   ptb         ! sea ice base temperature 
    995       REAL(wp), DIMENSION(:,:,:), INTENT(in   ) ::   phs         ! snow thickness 
    996       REAL(wp), DIMENSION(:,:,:), INTENT(in   ) ::   phi         ! sea ice thickness 
     992      INTEGER                   , INTENT(in   ) ::   k_virtual_itd   ! single-category option 
     993      REAL(wp), DIMENSION(:,:,:), INTENT(inout) ::   ptsu            ! sea ice / snow surface temperature 
     994      REAL(wp), DIMENSION(:,:)  , INTENT(in   ) ::   ptb             ! sea ice base temperature 
     995      REAL(wp), DIMENSION(:,:,:), INTENT(in   ) ::   phs             ! snow thickness 
     996      REAL(wp), DIMENSION(:,:,:), INTENT(in   ) ::   phi             ! sea ice thickness 
    997997      ! 
    998998      INTEGER , PARAMETER ::   nit = 10                  ! number of iterations 
     
    10131013      !      I   Enhanced conduction factor  ! 
    10141014      ! -------------------------------------! 
    1015       ! Emulates the enhancement of conduction by unresolved thin ice (k_monocat = 1/3) 
     1015      ! Emulates the enhancement of conduction by unresolved thin ice (k_virtual_itd = 1/2) 
    10161016      ! Fichefet and Morales Maqueda, JGR 1997 
    10171017      ! 
    10181018      zgfac(:,:,:) = 1._wp 
    10191019       
    1020       SELECT CASE ( k_monocat )  
    1021       ! 
    1022       CASE ( 1 , 3 ) 
     1020      SELECT CASE ( k_virtual_itd ) 
     1021      ! 
     1022      CASE ( 1 , 2 ) 
    10231023         ! 
    10241024         zfac  = 1._wp /  ( rn_cnd_s + rcdic ) 
Note: See TracChangeset for help on using the changeset viewer.