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 7077 for branches/2016/dev_v3_6_STABLE_r6506_AGRIF_LIM3/NEMOGCM/NEMO/OPA_SRC/SBC/sbcice_lim.F90 – NEMO

Ignore:
Timestamp:
2016-10-24T17:07:43+02:00 (7 years ago)
Author:
clem
Message:

enable analytic forcings with LIM3. It requires a change in namelist_ref.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2016/dev_v3_6_STABLE_r6506_AGRIF_LIM3/NEMOGCM/NEMO/OPA_SRC/SBC/sbcice_lim.F90

    r7060 r7077  
    3030   USE sbcblk_clio     ! Surface boundary condition: CLIO bulk 
    3131   USE sbccpl          ! Surface boundary condition: coupled interface 
     32   USE sbcana          ! Surface boundary condition: analytic formulation 
    3233   USE albedo          ! ocean & ice albedo 
    3334 
     
    109110      !!--------------------------------------------------------------------- 
    110111      INTEGER, INTENT(in) ::   kt      ! ocean time step 
    111       INTEGER, INTENT(in) ::   kblk    ! type of bulk (=3 CLIO, =4 CORE, =5 COUPLED) 
     112      INTEGER, INTENT(in) ::   kblk    ! type of bulk (=1 ANALYTIC, =3 CLIO, =4 CORE, =5 COUPLED) 
    112113      !! 
    113114      INTEGER  ::   jl                 ! dummy loop index 
     
    156157         !----------------------------------------------------------------- 
    157158         SELECT CASE( kblk ) 
     159            CASE( jp_ana     )   ;    CALL ana_ice_tau                              ! analytic formulation             
    158160            CASE( jp_clio    )   ;    CALL blk_ice_clio_tau                         ! CLIO bulk formulation             
    159161            CASE( jp_core    )   ;    CALL blk_ice_core_tau                         ! CORE bulk formulation 
     
    228230         SELECT CASE( kblk ) 
    229231 
     232            CASE( jp_ana )                                        ! analytic formulation 
     233                                      CALL ana_ice_flx 
     234                
    230235            CASE( jp_clio )                                       ! CLIO bulk formulation 
    231236               ! In CLIO the cloud fraction is read in the climatology and the all-sky albedo  
Note: See TracChangeset for help on using the changeset viewer.