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

Changeset 830


Ignore:
Timestamp:
2008-03-06T19:46:43+01:00 (16 years ago)
Author:
ctlod
Message:

dev_002_LIM : add declaration of Atmospheric drag coefficients over sea-ice & ocean cai/cao

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev_002_LIM/NEMO/LIM_SRC_3/iceini.F90

    r825 r830  
    4141      numit                  !: iteration number 
    4242   REAL(wp), PUBLIC  ::   &  !: 
    43       hsndif = 0.e0 ,     &  !: computation of temp. in snow (0) or not (9999) 
    44       hicdif = 0.e0 ,     &  !: computation of temp. in ice (0) or not (9999) 
    45       tpstot                 !: time of the run in seconds 
     43      hsndif = 0.e0    ,  &  !: computation of temp. in snow (0) or not (9999) 
     44      hicdif = 0.e0    ,  &  !: computation of temp. in ice (0) or not (9999) 
     45      tpstot           ,  &  !: time of the run in seconds 
     46      cai    = 1.40e-3 ,  &  !: atmospheric drag over sea ice 
     47      cao    = 1.00e-3       !: atmospheric drag over ocean 
    4648   REAL(wp), PUBLIC, DIMENSION(2)  ::  &  !: 
    4749      acrit  = (/ 1.e-06 , 1.e-06 /)    !: minimum fraction for leads in  
     
    129131      !!   2.0  !  03-08 (C. Ethe)  Original code 
    130132      !!------------------------------------------------------------------- 
    131       NAMELIST/namicerun/ ln_limdyn, acrit, hsndif, hicdif, ln_nicep 
     133      NAMELIST/namicerun/ ln_limdyn, acrit, hsndif, hicdif, cai, cao, ln_nicep 
    132134      !!------------------------------------------------------------------- 
    133135 
     
    143145         WRITE(numout,*) '   computation of temp. in snow (=0) or not (=9999) hsndif = ', hsndif 
    144146         WRITE(numout,*) '   computation of temp. in ice  (=0) or not (=9999) hicdif = ', hicdif 
     147         WRITE(numout,*) '   atmospheric drag over sea ice                           = ', cai 
     148         WRITE(numout,*) '   atmospheric drag over ocean                             = ', cao 
    145149         WRITE(numout,*) '   Several ice points in the ice or not in ocean.output = ', ln_nicep 
    146150      ENDIF 
Note: See TracChangeset for help on using the changeset viewer.