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 10534 for NEMO/trunk/src/OCE – NEMO

Changeset 10534 for NEMO/trunk/src/OCE


Ignore:
Timestamp:
2019-01-16T17:49:45+01:00 (5 years ago)
Author:
clem
Message:

change some more names in the ice

Location:
NEMO/trunk/src/OCE/SBC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • NEMO/trunk/src/OCE/SBC/sbcblk.F90

    r10531 r10534  
    1717   !!                 !                        ==> based on AeroBulk (http://aerobulk.sourceforge.net/) 
    1818   !!            4.0  !  2016-10  (G. Madec)  introduce a sbc_blk_init routine 
    19    !!            4.0  !  2016-10  (M. Vancoppenolle)  Introduce Jules emulator (M. Vancoppenolle)  
     19   !!            4.0  !  2016-10  (M. Vancoppenolle)  Introduce conduction flux emulator (M. Vancoppenolle)  
    2020   !!---------------------------------------------------------------------- 
    2121 
     
    3131   !!   blk_ice_tau   : provide the air-ice stress 
    3232   !!   blk_ice_flx   : provide the heat and mass fluxes at air-ice interface 
    33    !!   blk_ice_qcn   : provide ice surface temperature and snow/ice conduction flux (emulating JULES coupler) 
     33   !!   blk_ice_qcn   : provide ice surface temperature and snow/ice conduction flux (emulating conduction flux) 
    3434   !!   Cdn10_Lupkes2012 : Lupkes et al. (2012) air-ice drag 
    3535   !!   Cdn10_Lupkes2015 : Lupkes et al. (2015) air-ice drag  
     
    688688   !!   blk_ice_tau : provide the air-ice stress 
    689689   !!   blk_ice_flx : provide the heat and mass fluxes at air-ice interface 
    690    !!   blk_ice_qcn : provide ice surface temperature and snow/ice conduction flux (emulating JULES coupler) 
     690   !!   blk_ice_qcn : provide ice surface temperature and snow/ice conduction flux (emulating conduction flux) 
    691691   !!   Cdn10_Lupkes2012 : Lupkes et al. (2012) air-ice drag 
    692692   !!   Cdn10_Lupkes2015 : Lupkes et al. (2015) air-ice drag  
     
    932932      !! ** Purpose :   Compute surface temperature and snow/ice conduction flux 
    933933      !!                to force sea ice / snow thermodynamics 
    934       !!                in the case JULES coupler is emulated 
     934      !!                in the case conduction flux is emulated 
    935935      !!                 
    936936      !! ** Method  :   compute surface energy balance assuming neglecting heat storage 
  • NEMO/trunk/src/OCE/SBC/sbccpl.F90

    r10425 r10534  
    20122012      !                                                      !      Transmitted Qsr      !   [W/m2] 
    20132013      !                                                      ! ========================= ! 
    2014       SELECT CASE( nice_jules ) 
    2015       CASE( np_jules_OFF    )       !==  No Jules coupler  ==! 
     2014      IF( .NOT.ln_cndflx ) THEN                              !==  No conduction flux as surface forcing  ==! 
    20162015         ! 
    20172016         !                    ! ===> used prescribed cloud fraction representative for polar oceans in summer (0.81) 
     
    20222021         WHERE( phi(:,:,:) <= 0.1_wp )   qtr_ice_top(:,:,:) = qsr_ice(:,:,:)   ! thin ice transmits all solar radiation 
    20232022         !      
    2024       CASE( np_jules_ACTIVE )       !==  Jules coupler is active  ==! 
     2023      ELSEIF( ln_cndflx .AND. .NOT.ln_cndemulate ) THEN      !==  conduction flux as surface forcing  ==! 
    20252024         ! 
    20262025         !                    ! ===> here we must receive the qtr_ice_top array from the coupler 
     
    20282027         qtr_ice_top(:,:,:) = 0._wp 
    20292028         ! 
    2030       END SELECT 
     2029      ENDIF 
    20312030      ! 
    20322031#endif 
Note: See TracChangeset for help on using the changeset viewer.