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 8882 for branches/2017/dev_CNRS_2017/NEMOGCM/NEMO/OPA_SRC/DOM/phycst.F90 – NEMO

Ignore:
Timestamp:
2017-12-01T18:44:09+01:00 (6 years ago)
Author:
flavoni
Message:

dev_CNRS_2017 branch: merged dev_r7881_ENHANCE09_RK3 with trunk r8864

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_CNRS_2017/NEMOGCM/NEMO/OPA_SRC/DOM/phycst.F90

    r7813 r8882  
    5454 
    5555   REAL(wp), PUBLIC ::   rhosn    =  330._wp         !: volumic mass of snow          [kg/m3] 
     56   REAL(wp), PUBLIC ::   rhofw    = 1000._wp         !: volumic mass of freshwater in melt ponds [kg/m3] 
    5657   REAL(wp), PUBLIC ::   emic     =    0.97_wp       !: emissivity of snow or ice 
    5758   REAL(wp), PUBLIC ::   sice     =    6.0_wp        !: salinity of ice               [psu] 
     
    8889   REAL(wp), PUBLIC ::   r1_rhoic                    !: 1 / rhoic 
    8990   REAL(wp), PUBLIC ::   r1_rhosn                    !: 1 / rhosn 
     91   REAL(wp), PUBLIC ::   r1_cpic                     !: 1 / cpic 
    9092#endif 
    9193   !!---------------------------------------------------------------------- 
     
    156158      r1_rhoic = 1._wp / rhoic 
    157159      r1_rhosn = 1._wp / rhosn 
     160      r1_cpic  = 1._wp / cpic 
    158161#endif 
    159162      IF(lwp) THEN 
     
    176179         WRITE(numout,*) '          density of sea ice                        = ', rhoic   , ' kg/m^3' 
    177180         WRITE(numout,*) '          density of snow                           = ', rhosn   , ' kg/m^3' 
     181         WRITE(numout,*) '          density of freshwater (in melt ponds)     = ', rhofw   , ' kg/m^3' 
    178182         WRITE(numout,*) '          emissivity of snow or ice                 = ', emic   
    179183         WRITE(numout,*) '          salinity of ice                           = ', sice    , ' psu' 
Note: See TracChangeset for help on using the changeset viewer.