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 6774 for branches/2016/dev_v3_6_STABLE_r6506_AGRIF_LIM3 – NEMO

Ignore:
Timestamp:
2016-07-01T20:28:51+02:00 (8 years ago)
Author:
clem
Message:

update from trunk

Location:
branches/2016/dev_v3_6_STABLE_r6506_AGRIF_LIM3/NEMOGCM
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/2016/dev_v3_6_STABLE_r6506_AGRIF_LIM3/NEMOGCM/CONFIG/SHARED/field_def.xml

    r6764 r6774  
    303303         <field id="icevolu"      long_name="ice volume"                                                   unit="m"        /> 
    304304         <field id="snowvol"      long_name="snow volume"                                                  unit="m"        /> 
    305          <field id="tau_icebfr"   long_name="ice friction on ocean bottom for landfast ice"                unit="N"        /> 
     305         <field id="tau_icebfr"   long_name="ice friction on ocean bottom for landfast ice"                unit="N/m2"     /> 
    306306 
    307307         <field id="icetrp"       long_name="ice volume transport"                                         unit="m/day"          /> 
  • branches/2016/dev_v3_6_STABLE_r6506_AGRIF_LIM3/NEMOGCM/CONFIG/SHARED/namelist_ice_lim3_ref

    r6763 r6774  
    8888                                    !     advised value: 1/3 (rn_nevp=120) or 1/9 (rn_nevp=300) 
    8989   ln_landfast    =  .false.        !  landfast ice parameterization (T or F)                            
    90    rn_gamma       =    0.2          !     (ln_landfast=T)  fraction of ocean depth that ice must reach to initiate landfast 
     90   rn_gamma       =    0.15         !     (ln_landfast=T)  fraction of ocean depth that ice must reach to initiate landfast 
    9191                                    !                      recommended range: [0.1 ; 0.25] 
    92    rn_icebfr      =    5.6e-06      !     (ln_landfast=T)  maximum bottom stress per unit area of contact                   
     92   rn_icebfr      =    10.          !     (ln_landfast=T)  maximum bottom stress per unit area of contact (N/m2)                  
    9393                                    !                      a very large value ensures ice velocity=0 even with a small contact area 
    94                                     !                      recommended range: ?? 
     94                                    !                      recommended range: ?? (should be greater than atm-ice stress => >0.1 N/m2) 
    9595/ 
    9696!------------------------------------------------------------------------------ 
  • branches/2016/dev_v3_6_STABLE_r6506_AGRIF_LIM3/NEMOGCM/NEMO/OPA_SRC/DYN/dynzdf_imp.F90

    r5120 r6774  
    323323            ze3va =  ( 1._wp - r_vvl ) * fse3v_n(ji,jj,1) + r_vvl   * fse3v_a(ji,jj,1)  
    324324            va(ji,jj,1) = va(ji,jj,1) + p2dt * 0.5_wp * ( vtau_b(ji,jj) + vtau(ji,jj) )   & 
    325                &                                      / ( ze3va * rau0 )  
     325               &                                      / ( ze3va * rau0 ) * vmask(ji,jj,1) 
    326326#else 
    327327            va(ji,jj,1) = vb(ji,jj,1) & 
    328328               &                   + p2dt *(va(ji,jj,1) +  0.5_wp * ( vtau_b(ji,jj) + vtau(ji,jj) )   & 
    329                &                                                       / ( fse3v(ji,jj,1) * rau0     ) ) 
     329               &                                      / ( fse3v(ji,jj,1) * rau0     ) * vmask(ji,jj,1) ) 
    330330#endif 
    331331         END DO 
  • branches/2016/dev_v3_6_STABLE_r6506_AGRIF_LIM3/NEMOGCM/NEMO/OPA_SRC/TRA/traadv_tvd.F90

    r6746 r6774  
    469469         ! 
    470470         ztrs(:,:,:,1) = ptb(:,:,:,jn) 
     471         ztrs(:,:,1,2) = ptb(:,:,1,jn) 
     472         ztrs(:,:,1,3) = ptb(:,:,1,jn) 
    471473         zwzts(:,:,:) = 0._wp 
    472474 
Note: See TracChangeset for help on using the changeset viewer.