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.
limmsh.F90 in branches/DEV_r1879_FCM/NEMOGCM/NEMO/LIM_SRC_3 – NEMO

source: branches/DEV_r1879_FCM/NEMOGCM/NEMO/LIM_SRC_3/limmsh.F90 @ 2007

Last change on this file since 2007 was 2007, checked in by smasson, 14 years ago

update branches/DEV_r1879_FCM/NEMOGCM/NEMO with tags/nemo_v3_2_1/NEMO

  • Property svn:keywords set to Id
File size: 5.6 KB
Line 
1MODULE limmsh
2   !!======================================================================
3   !!                     ***  MODULE  limmsh  ***
4   !! LIM ice model :   definition of the ice mesh parameters
5   !!======================================================================
6   !! History :  3.2  !  2008-01 (NEMO team)  LIM-3: adaptation from LIM-2
7   !!----------------------------------------------------------------------
8#if defined key_lim3
9   !!----------------------------------------------------------------------
10   !!   'key_lim3'                                      LIM3 sea-ice model
11   !!----------------------------------------------------------------------
12   !!   lim_msh   : definition of the ice mesh
13   !!----------------------------------------------------------------------
14   USE phycst         ! physical constants
15   USE dom_oce        ! ocean domain
16   USE dom_ice        ! sea-ice domain
17   USE in_out_manager ! I/O manager
18   USE lbclnk         !
19
20   IMPLICIT NONE
21   PRIVATE
22
23   PUBLIC   lim_msh   ! routine called by ice_ini.F90
24
25   !!----------------------------------------------------------------------
26   !! NEMO/LIM 3.2,  UCL-ASTR-LOCEAN-IPSL (2009)
27   !! $Id$
28   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt)
29   !!----------------------------------------------------------------------
30
31CONTAINS
32
33   SUBROUTINE lim_msh
34      !!-------------------------------------------------------------------
35      !!                  ***  ROUTINE lim_msh  ***
36      !!             
37      !! ** Purpose : Definition of the charact. of the numerical grid
38      !!       
39      !! ** Action  : - Initialisation of some variables
40      !!              - Definition of some constants linked with the grid
41      !!              - Definition of the metric coef. for the sea/ice
42      !!              - Initialization of the ice masks (tmsk, umsk)
43      !!
44      !! Reference  : Deleersnijder et al. Ocean Modelling 100, 7-10
45      !!---------------------------------------------------------------------
46      INTEGER  ::   ji, jj   ! dummy loop indices
47      REAL(wp) ::   zusden   ! temporary scalar
48      !!---------------------------------------------------------------------
49
50      IF(lwp) THEN
51         WRITE(numout,*)
52         WRITE(numout,*) 'lim_msh : LIM-3 sea-ice model, mesh initialization'
53         WRITE(numout,*) '~~~~~~~'
54      ENDIF
55
56      IF( jphgr_msh == 2 .OR. jphgr_msh == 3 .OR. jphgr_msh == 5 )   &
57          &      CALL ctl_stop(' Coriolis parameter in LIM not set for f- or beta-plane' )
58
59      !                           !==  coriolis factor & Equator position ==!
60      njeq   = INT( jpj / 2 ) 
61      njeqm1 = njeq - 1 
62      !
63      fcor(:,:) = 2. * omega * SIN( gphit(:,:) * rad )   ! coriolis factor
64      !
65      IF( fcor(1,1) * fcor(1,nlcj) < 0.e0 ) THEN   ! local domain include both hemisphere
66         l_jeq = .TRUE.
67         njeq  = 1
68         DO WHILE ( njeq <= jpj .AND. fcor(1,njeq) < 0.e0 )
69            njeq = njeq + 1
70         END DO
71         IF(lwp ) WRITE(numout,*) '          the equator is inside the domain at about njeq = ', njeq
72      ELSEIF( fcor(1,1) < 0.e0 ) THEN
73         l_jeq = .FALSE.
74         njeq = jpj
75         IF(lwp ) WRITE(numout,*) '          the model domain is entirely in the southern hemisphere: njeq = ', njeq
76      ELSE
77         l_jeq = .FALSE.
78         njeq = 2
79         IF(lwp ) WRITE(numout,*) '          the model domain is entirely in the northern hemisphere: njeq = ', njeq
80      ENDIF
81      !
82      njeqm1 = njeq - 1
83
84
85      !                           !==  metric coefficients for sea ice dynamic  ==!
86      wght(:,:,:,:) = 0.e0
87!!gm  Optimisation :  wght to be defined at F-point, not I-point  and change in limrhg
88      DO jj = 2, jpj
89         DO ji = 2, jpi
90            zusden = 1.e0 / (  ( e1t(ji,jj) + e1t(ji-1,jj  ) )   &
91               &             * ( e2t(ji,jj) + e2t(ji  ,jj-1) ) )
92            wght(ji,jj,1,1) = zusden * e1t(ji  ,jj) * e2t(ji,jj  )
93            wght(ji,jj,1,2) = zusden * e1t(ji  ,jj) * e2t(ji,jj-1)
94            wght(ji,jj,2,1) = zusden * e1t(ji-1,jj) * e2t(ji,jj  )
95            wght(ji,jj,2,2) = zusden * e1t(ji-1,jj) * e2t(ji,jj-1)
96         END DO
97      END DO
98      CALL lbc_lnk( wght(:,:,1,1), 'I', 1. )      ! CAUTION: even with the lbc_lnk at ice U-V-point
99      CALL lbc_lnk( wght(:,:,1,2), 'I', 1. )      ! the value of wght at jpj is wrong
100      CALL lbc_lnk( wght(:,:,2,1), 'I', 1. )      ! but it is never used
101      CALL lbc_lnk( wght(:,:,2,2), 'I', 1. )
102!!gm end
103
104      !                           !==  ice masks  ==!
105      tms(:,:) = tmask(:,:,1)             ! ice T-point  : use surface tmask
106      tmu(:,:) = umask(:,:,1)             ! ice U-point  : use surface umask  (C-grid EVP)
107      tmv(:,:) = vmask(:,:,1)             ! ice V-point  : use surface vmask  (C-grid EVP)
108      DO jj = 1, jpjm1                    ! ice F-point  : recompute fmask (due to nn_shlat)
109         DO ji = 1 , jpim1   ! NO vector opt.
110            tmf(ji,jj) =  tms(ji,jj) * tms(ji+1,jj) * tms(ji,jj+1) * tms(ji+1,jj+1)
111         END DO
112      END DO
113      CALL lbc_lnk( tmf(:,:), 'F', 1. )           ! lateral boundary conditions
114
115      !                           !==  unmasked and masked area of T-grid cell
116      area(:,:) = e1t(:,:) * e2t(:,:)
117      !
118   END SUBROUTINE lim_msh
119
120#else
121   !!----------------------------------------------------------------------
122   !!   Default option            Dummy Module         NO LIM sea-ice model
123   !!----------------------------------------------------------------------
124CONTAINS
125   SUBROUTINE lim_msh           ! Dummy routine
126   END SUBROUTINE lim_msh
127#endif
128
129   !!======================================================================
130END MODULE limmsh
Note: See TracBrowser for help on using the repository browser.