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 14072 for NEMO/trunk/src/ICE/icedyn_rhg.F90 – NEMO

Ignore:
Timestamp:
2020-12-04T08:48:38+01:00 (3 years ago)
Author:
laurent
Message:

Merging branch "2020/dev_r13648_ASINTER-04_laurent_bulk_ice", ticket #2369

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/trunk/src/ICE/icedyn_rhg.F90

    r14006 r14072  
    22   !!====================================================================== 
    33   !!                     ***  MODULE  icedyn_rhg  *** 
    4    !!   Sea-Ice dynamics : master routine for rheology  
     4   !!   Sea-Ice dynamics : master routine for rheology 
    55   !!====================================================================== 
    66   !! history :  4.0  !  2018     (C. Rousset)      Original code 
     
    4949      !!------------------------------------------------------------------- 
    5050      !!               ***  ROUTINE ice_dyn_rhg  *** 
    51       !!                
     51      !! 
    5252      !! ** Purpose :   compute ice velocity 
    5353      !! 
     
    7272      !--------------! 
    7373      !== Rheology ==! 
    74       !--------------!    
     74      !--------------! 
    7575      SELECT CASE( nice_rhg ) 
    7676      !                                !------------------------! 
     
    7878         !                             !------------------------! 
    7979         CALL ice_dyn_rhg_evp( kt, Kmm, stress1_i, stress2_i, stress12_i, shear_i, divu_i, delta_i ) 
    80          !         
     80         ! 
    8181         !                             !------------------------! 
    8282      CASE( np_rhgVP  )                ! Viscous-Plastic        ! 
     
    121121      !! 
    122122      NAMELIST/namdyn_rhg/  ln_rhg_EVP, ln_aEVP, ln_rhg_EAP, rn_creepl, rn_ecc , nn_nevp, rn_relast, nn_rhg_chkcvg, &  !-- evp 
    123          &                  ln_rhg_VP, nn_vp_nout, nn_vp_ninn, nn_vp_chkcvg                                            !-- vp  
     123         &                  ln_rhg_VP, nn_vp_nout, nn_vp_ninn, nn_vp_chkcvg                                            !-- vp 
    124124      !!------------------------------------------------------------------- 
    125125      ! 
     
    156156      ! 
    157157      !                             !== set the choice of ice advection ==! 
    158       ioptio = 0  
     158      ioptio = 0 
    159159      IF( ln_rhg_EVP ) THEN   ;   ioptio = ioptio + 1   ;   nice_rhg = np_rhgEVP    ;   ENDIF 
    160160      IF( ln_rhg_EAP ) THEN   ;   ioptio = ioptio + 1   ;   nice_rhg = np_rhgEAP    ;   ENDIF 
    161       IF( ln_rhg_VP  ) THEN   ;   ioptio = ioptio + 1   ;   nice_rhg = np_rhgVP     ;   ENDIF  
     161      IF( ln_rhg_VP  ) THEN   ;   ioptio = ioptio + 1   ;   nice_rhg = np_rhgVP     ;   ENDIF 
    162162      IF( ioptio /= 1 )   CALL ctl_stop( 'ice_dyn_rhg_init: choose one and only one ice rheology' ) 
    163163      ! 
     
    172172   !!   Default option         Empty module           NO SI3 sea-ice model 
    173173   !!---------------------------------------------------------------------- 
    174 #endif  
     174#endif 
    175175 
    176176   !!====================================================================== 
Note: See TracChangeset for help on using the changeset viewer.