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.
icedyn_rhg.F90 in NEMO/branches/2020/SI3-03_VP_rheology/src/ICE – NEMO

source: NEMO/branches/2020/SI3-03_VP_rheology/src/ICE/icedyn_rhg.F90 @ 13493

Last change on this file since 13493 was 13493, checked in by vancop, 4 years ago

Some progress on VP rheology but still does not compile

  • Property svn:keywords set to Id
File size: 8.7 KB
Line 
1MODULE icedyn_rhg
2   !!======================================================================
3   !!                     ***  MODULE  icedyn_rhg  ***
4   !!   Sea-Ice dynamics : master routine for rheology
5   !!======================================================================
6   !! history :  4.0  !  2018     (C. Rousset)      Original code
7   !!----------------------------------------------------------------------
8#if defined key_si3
9   !!----------------------------------------------------------------------
10   !!   'key_si3'                                       SI3 sea-ice model
11   !!----------------------------------------------------------------------
12   !!    ice_dyn_rhg      : computes ice velocities
13   !!    ice_dyn_rhg_init : initialization and namelist read
14   !!----------------------------------------------------------------------
15   USE phycst         ! physical constants
16   USE dom_oce        ! ocean space and time domain
17   USE ice            ! sea-ice: variables
18   USE icedyn_rhg_evp ! sea-ice: EVP rheology
19   USE icectl         ! sea-ice: control prints
20   !
21   USE in_out_manager ! I/O manager
22   USE lib_mpp        ! MPP library
23   USE lib_fortran    ! fortran utilities (glob_sum + no signed zero)
24   USE timing         ! Timing
25
26   IMPLICIT NONE
27   PRIVATE
28
29   PUBLIC   ice_dyn_rhg        ! called by icestp.F90
30   PUBLIC   ice_dyn_rhg_init   ! called by icestp.F90
31
32   INTEGER ::              nice_rhg   ! choice of the type of rheology
33   !                                        ! associated indices:
34   INTEGER, PARAMETER ::   np_rhgEVP = 1   ! EVP rheology
35!! INTEGER, PARAMETER ::   np_rhgEAP = 2   ! EAP rheology
36   INTEGER, PARAMETER ::   np_rhgVP  = 3   ! VP rheology
37
38   ! ** namelist (namrhg) **
39   LOGICAL ::   ln_rhg_EVP       ! EVP rheology
40   LOGICAL ::   ln_rhg_VP        ! EVP rheology
41   !
42   !! * Substitutions
43#  include "vectopt_loop_substitute.h90"
44   !!----------------------------------------------------------------------
45   !! NEMO/ICE 4.0 , NEMO Consortium (2018)
46   !! $Id$
47   !! Software governed by the CeCILL licence     (./LICENSE)
48   !!----------------------------------------------------------------------
49CONTAINS
50
51   SUBROUTINE ice_dyn_rhg( kt )
52      !!-------------------------------------------------------------------
53      !!               ***  ROUTINE ice_dyn_rhg  ***
54      !!               
55      !! ** Purpose :   compute ice velocity
56      !!
57      !! ** Action  : comupte - ice velocity (u_ice, v_ice)
58      !!                      - 3 components of the stress tensor (stress1_i, stress2_i, stress12_i)
59      !!                      - shear, divergence and delta (shear_i, divu_i, delta_i)
60      !!--------------------------------------------------------------------
61      INTEGER, INTENT(in) ::   kt     ! ice time step
62      !
63      INTEGER  ::   jl   ! dummy loop indices
64      !!--------------------------------------------------------------------
65      ! controls
66      IF( ln_timing    )   CALL timing_start('icedyn_rhg')                                                             ! timing
67      IF( ln_icediachk )   CALL ice_cons_hsm(0, 'icedyn_rhg', rdiag_v, rdiag_s, rdiag_t, rdiag_fv, rdiag_fs, rdiag_ft) ! conservation
68      IF( ln_icediachk )   CALL ice_cons2D  (0, 'icedyn_rhg',  diag_v,  diag_s,  diag_t,  diag_fv,  diag_fs,  diag_ft) ! conservation
69      !
70      IF( kt == nit000 .AND. lwp ) THEN
71         WRITE(numout,*)
72         WRITE(numout,*)'ice_dyn_rhg: sea-ice rheology'
73         WRITE(numout,*)'~~~~~~~~~~~'
74      ENDIF
75      !
76      !--------------!
77      !== Rheology ==!
78      !--------------!   
79      SELECT CASE( nice_rhg )
80      !                                !---------------------------------!
81      CASE( np_rhgEVP )                ! Elasto-Viscous-Plastic rheology !
82         !                             !---------------------------------!
83         CALL ice_dyn_rhg_evp( kt, stress1_i, stress2_i, stress12_i, shear_i, divu_i, delta_i )
84         !         
85      END SELECT
86
87      !                                !---------------------------------------------!
88      CASE( np_rhgVP  )                ! Viscous-Plastic rheology                    !
89         !                             !---------------------------------------------!
90         CALL ice_dyn_rhg_vp ( kt, stress1_i, stress2_i, stress12_i, shear_i, divu_i, delta_i )
91         !         
92      END SELECT
93      !
94      IF( lrst_ice ) THEN                       !* write EVP fields in the restart file
95         IF( ln_rhg_EVP )   CALL rhg_evp_rst( 'WRITE', kt )
96         IF( ln_rhg_VP  )   CALL rhg_lsr_rst( 'WRITE', kt )
97      ENDIF
98      !
99      ! controls
100      IF( ln_ctl       )   CALL ice_prt3D   ('icedyn_rhg')                                                             ! prints
101      IF( ln_icediachk )   CALL ice_cons_hsm(1, 'icedyn_rhg', rdiag_v, rdiag_s, rdiag_t, rdiag_fv, rdiag_fs, rdiag_ft) ! conservation
102      IF( ln_icediachk )   CALL ice_cons2D  (1, 'icedyn_rhg',  diag_v,  diag_s,  diag_t,  diag_fv,  diag_fs,  diag_ft) ! conservation
103      IF( ln_timing    )   CALL timing_stop ('icedyn_rhg')                                                             ! timing
104      !
105   END SUBROUTINE ice_dyn_rhg
106
107
108   SUBROUTINE ice_dyn_rhg_init
109      !!-------------------------------------------------------------------
110      !!                  ***  ROUTINE ice_dyn_rhg_init  ***
111      !!
112      !! ** Purpose : Physical constants and parameters linked to the ice
113      !!      dynamics
114      !!
115      !! ** Method  :  Read the namdyn_rhg namelist and check the ice-dynamic
116      !!       parameter values called at the first timestep (nit000)
117      !!
118      !! ** input   :   Namelist namdyn_rhg
119      !!-------------------------------------------------------------------
120      INTEGER ::   ios, ioptio   ! Local integer output status for namelist read
121      !!
122      NAMELIST/namdyn_rhg/  ln_rhg_EVP, ln_aEVP, rn_creepl, rn_ecc , nn_nevp, rn_relast, ln_rhg_chkcvg, &
123    &                       ln_rhg_VP 
124      !!-------------------------------------------------------------------
125      !
126      REWIND( numnam_ice_ref )         ! Namelist namdyn_rhg in reference namelist : Ice dynamics
127      READ  ( numnam_ice_ref, namdyn_rhg, IOSTAT = ios, ERR = 901)
128901   IF( ios /= 0 ) CALL ctl_nam ( ios , 'namdyn_rhg in reference namelist' )
129      REWIND( numnam_ice_cfg )         ! Namelist namdyn_rhg in configuration namelist : Ice dynamics
130      READ  ( numnam_ice_cfg, namdyn_rhg, IOSTAT = ios, ERR = 902 )
131902   IF( ios >  0 ) CALL ctl_nam ( ios , 'namdyn_rhg in configuration namelist' )
132      IF(lwm) WRITE ( numoni, namdyn_rhg )
133      !
134      IF(lwp) THEN                     ! control print
135         WRITE(numout,*)
136         WRITE(numout,*) 'ice_dyn_rhg_init: ice parameters for ice dynamics '
137         WRITE(numout,*) '~~~~~~~~~~~~~~~'
138         WRITE(numout,*) '   Namelist : namdyn_rhg:'
139         WRITE(numout,*) '      rheology EVP (icedyn_rhg_evp)                        ln_rhg_EVP    = ', ln_rhg_EVP
140         WRITE(numout,*) '         use adaptive EVP (aEVP)                           ln_aEVP       = ', ln_aEVP
141         WRITE(numout,*) '         creep limit                                       rn_creepl     = ', rn_creepl
142         WRITE(numout,*) '         eccentricity of the elliptical yield curve        rn_ecc        = ', rn_ecc
143         WRITE(numout,*) '         number of iterations for subcycling               nn_nevp       = ', nn_nevp
144         WRITE(numout,*) '         ratio of elastic timescale over ice time step     rn_relast     = ', rn_relast
145         WRITE(numout,*) '      check convergence of rheology                        ln_rhg_chkcvg = ', ln_rhg_chkcvg
146         WRITE(numout,*) ''   
147         WRITE(numout,*) '      rheology VP     (icedyn_rhg_lsr)                     ln_rhg_VP     = ', ln_rhg_VP
148      ENDIF
149      !
150      !                             !== set the choice of ice advection ==!
151      ioptio = 0 
152      IF( ln_rhg_EVP ) THEN   ;   ioptio = ioptio + 1   ;   nice_rhg = np_rhgEVP    ;   ENDIF
153!!    IF( ln_rhg_EAP ) THEN   ;   ioptio = ioptio + 1   ;   nice_rhg = np_rhgEAP    ;   ENDIF
154      IF( ln_rhg_VP  ) THEN   ;   ioptio = ioptio + 1   ;   nice_rhg = np_rhgVP     ;   ENDIF
155      IF( ioptio /= 1 )   CALL ctl_stop( 'ice_dyn_rhg_init: choose one and only one ice rheology' )
156      !
157      IF( ln_rhg_EVP  )   CALL rhg_evp_rst( 'READ' )  !* read or initialize all required files
158      IF( ln_rhg_VP   )   CALL rhg_lsr_rst( 'READ' )  !* read or initialize all required files
159      !
160   END SUBROUTINE ice_dyn_rhg_init
161
162#else
163   !!----------------------------------------------------------------------
164   !!   Default option         Empty module           NO SI3 sea-ice model
165   !!----------------------------------------------------------------------
166#endif 
167
168   !!======================================================================
169END MODULE icedyn_rhg
Note: See TracBrowser for help on using the repository browser.