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 6311 for branches/2015/nemo_v3_6_STABLE/NEMOGCM/NEMO/OPA_SRC/SBC/sbcice_lim.F90 – NEMO

Ignore:
Timestamp:
2016-02-15T12:28:31+01:00 (8 years ago)
Author:
cetlod
Message:

3.6 stable : have 2 different values for open lead fraction in LIM3 to enhance ventilation in southern ocean, see ticket #1678

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2015/nemo_v3_6_STABLE/NEMOGCM/NEMO/OPA_SRC/SBC/sbcice_lim.F90

    r5540 r6311  
    265265      !!---------------------------------------------------------------------- 
    266266      INTEGER :: ierr 
     267      INTEGER :: ji, jj 
    267268      !!---------------------------------------------------------------------- 
    268269      IF(lwp) WRITE(numout,*) 
     
    321322      tn_ice(:,:,:) = t_su(:,:,:)       ! initialisation of surface temp for coupled simu 
    322323      ! 
     324      DO jj = 1, jpj 
     325         DO ji = 1, jpi 
     326            IF( gphit(ji,jj) > 0._wp ) THEN  ;  rn_amax_2d(ji,jj) = rn_amax_n  ! NH 
     327            ELSE                             ;  rn_amax_2d(ji,jj) = rn_amax_s  ! SH 
     328            ENDIF 
     329        ENDDO 
     330      ENDDO  
     331      ! 
    323332      nstart = numit  + nn_fsbc       
    324333      nitrun = nitend - nit000 + 1  
     
    343352      INTEGER  ::   ios                 ! Local integer output status for namelist read 
    344353      NAMELIST/namicerun/ jpl, nlay_i, nlay_s, cn_icerst_in, cn_icerst_indir, cn_icerst_out, cn_icerst_outdir,  & 
    345          &                ln_limdyn, rn_amax, ln_limdiahsb, ln_limdiaout, ln_icectl, iiceprt, jiceprt   
     354         &                ln_limdyn, rn_amax_n, rn_amax_s, ln_limdiahsb, ln_limdiaout, ln_icectl, iiceprt, jiceprt   
    346355      !!------------------------------------------------------------------- 
    347356      !                     
     
    364373         WRITE(numout,*) '   number of snow layers                                   = ', nlay_s 
    365374         WRITE(numout,*) '   switch for ice dynamics (1) or not (0)      ln_limdyn   = ', ln_limdyn 
    366          WRITE(numout,*) '   maximum ice concentration                               = ', rn_amax  
     375         WRITE(numout,*) '   maximum ice concentration for NH                        = ', rn_amax_n  
     376         WRITE(numout,*) '   maximum ice concentration for SH                        = ', rn_amax_s 
    367377         WRITE(numout,*) '   Diagnose heat/salt budget or not          ln_limdiahsb  = ', ln_limdiahsb 
    368378         WRITE(numout,*) '   Output   heat/salt budget or not          ln_limdiaout  = ', ln_limdiaout 
Note: See TracChangeset for help on using the changeset viewer.