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 14392 – NEMO

Changeset 14392


Ignore:
Timestamp:
2021-02-04T10:08:21+01:00 (3 years ago)
Author:
dancopsey
Message:

Include heat involved in sublimation in the qns_ice flux. Weight qsr_tot by the leads fraction (ziceld).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/UKMO/NEMO_4.0.4_penetrating_solar/src/OCE/SBC/sbccpl.F90

    r14383 r14392  
    18831883      CASE( 'oce only' )         ! the required field is directly provided 
    18841884 
    1885          ! Get the sea ice non solar heat flux from conductive and melting 
     1885         ! Get the sea ice non solar heat flux from conductive, melting and sublimation fluxes 
    18861886         IF( TRIM(sn_rcv_iceflx%cldes) == 'coupled' ) THEN 
    1887             zqns_ice(:,:,:) = qml_ice(:,:,:) + qcn_ice(:,:,:) 
     1887            zqns_ice(:,:,:) = qml_ice(:,:,:) + qcn_ice(:,:,:) + evap_ice(:,:,:) * rLsub 
    18881888         ELSE 
    18891889            zqns_ice(:,:,:) = 0._wp 
     
    20322032      !                                                      ! ========================= ! 
    20332033      CASE( 'oce only' ) 
    2034          zqsr_tot(:,:  ) = MAX( 0._wp , frcv(jpr_qsroce)%z3(:,:,1) ) 
     2034         zqsr_tot(:,:  ) = MAX( 0._wp , frcv(jpr_qsroce)%z3(:,:,1) ) * ziceld(:,:) 
    20352035         ! For Met Office sea ice solar fluxes are already delt with by JULES so setting to zero 
    20362036         ! here so the only flux is the ocean only one. 
Note: See TracChangeset for help on using the changeset viewer.