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 13969 for NEMO – NEMO

Changeset 13969 for NEMO


Ignore:
Timestamp:
2020-12-02T10:53:57+01:00 (3 years ago)
Author:
clem
Message:

change the name of one namelist parameter to make it more compliant with the rest

Location:
NEMO/branches/2020/SI3_vp_rheology
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2020/SI3_vp_rheology/cfgs/SHARED/namelist_ice_ref

    r13967 r13969  
    106106      nn_vp_nout    = 10              !     number of outer iterations 
    107107      nn_vp_ninn    = 1500            !     number of inner iterations 
    108       nn_vp_cvgchk  = 5               !     iteration step for convergence check 
     108      nn_vp_chkcvg  = 5               !     iteration step for convergence check 
    109109/ 
    110110!------------------------------------------------------------------------------ 
  • NEMO/branches/2020/SI3_vp_rheology/src/ICE/ice.F90

    r13965 r13969  
    160160   INTEGER , PUBLIC ::   nn_vp_nout       !: Number of outer iterations 
    161161   INTEGER , PUBLIC ::   nn_vp_ninn       !: Number of inner iterations (linear system solver) 
    162    INTEGER , PUBLIC ::   nn_vp_cvgchk     !: Number of iterations every each convergence is checked 
     162   INTEGER , PUBLIC ::   nn_vp_chkcvg     !: Number of iterations every each convergence is checked 
    163163   ! 
    164164   !                                     !!** ice-advection namelist (namdyn_adv) ** 
  • NEMO/branches/2020/SI3_vp_rheology/src/ICE/icedyn_rhg.F90

    r13965 r13969  
    118118      !! 
    119119      NAMELIST/namdyn_rhg/  ln_rhg_EVP, ln_aEVP, rn_creepl, rn_ecc , nn_nevp, rn_relast, nn_rhg_chkcvg,   &    !-- evp 
    120     &                       ln_rhg_VP, nn_vp_nout, nn_vp_ninn, nn_vp_cvgchk                                    !-- vp  
     120    &                       ln_rhg_VP, nn_vp_nout, nn_vp_ninn, nn_vp_chkcvg                                    !-- vp  
    121121      !!------------------------------------------------------------------- 
    122122      ! 
     
    142142         WRITE(numout,*) '         number of outer iterations                        nn_vp_nout    = ', nn_vp_nout 
    143143         WRITE(numout,*) '         number of inner iterations                        nn_vp_ninn    = ', nn_vp_ninn 
    144          WRITE(numout,*) '         iteration step for convergence check              nn_vp_cvgchk  = ', nn_vp_cvgchk 
     144         WRITE(numout,*) '         iteration step for convergence check              nn_vp_chkcvg  = ', nn_vp_chkcvg 
    145145         IF( ln_rhg_EVP ) THEN 
    146146            IF    ( nn_rhg_chkcvg == 0 ) THEN   ;   WRITE(numout,*) '         no check cvg' 
  • NEMO/branches/2020/SI3_vp_rheology/src/ICE/icedyn_rhg_vp.F90

    r13967 r13969  
    10331033               zuerr_max = 0._wp 
    10341034                                
    1035                IF ( ll_u_iterate .AND. MOD ( i_inn, nn_vp_cvgchk ) == 0 ) THEN 
     1035               IF ( ll_u_iterate .AND. MOD ( i_inn, nn_vp_chkcvg ) == 0 ) THEN 
    10361036 
    10371037                  ! - Maximum U-velocity difference                
     
    10641064               zverr_max = 0._wp 
    10651065                
    1066                IF ( ll_v_iterate .AND. MOD ( i_inn, nn_vp_cvgchk ) == 0 ) THEN 
     1066               IF ( ll_v_iterate .AND. MOD ( i_inn, nn_vp_chkcvg ) == 0 ) THEN 
    10671067                
    10681068                  ! - Maximum V-velocity difference 
     
    10991099            !--------------------------------------------------------------------------------------- 
    11001100 
    1101             IF( nn_rhg_chkcvg/=0 .AND. MOD ( i_inn - 1, nn_vp_cvgchk ) == 0 ) CALL rhg_cvg_vp( kt, jter, nn_nvp, u_ice, v_ice, zmt, zuerr_max, zverr_max, zglob_area, & 
     1101            IF( nn_rhg_chkcvg/=0 .AND. MOD ( i_inn - 1, nn_vp_chkcvg ) == 0 ) CALL rhg_cvg_vp( kt, jter, nn_nvp, u_ice, v_ice, zmt, zuerr_max, zverr_max, zglob_area, & 
    11021102                      &                         zrhsu, zAU, zBU, zCU, zDU, zEU, zrhsv, zAV, zBV, zCV, zDV, zEV ) 
    11031103 
Note: See TracChangeset for help on using the changeset viewer.