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.
dom_ice.F90 in trunk/NEMO/LIM_SRC – NEMO

source: trunk/NEMO/LIM_SRC/dom_ice.F90 @ 77

Last change on this file since 77 was 77, checked in by opalod, 20 years ago

CT : UPDATE051 : Change variable name jeq to njeq and use a new algorithm to compute njeq based on Coriolis value

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.7 KB
Line 
1MODULE dom_ice
2   !!======================================================================
3   !!                   ***  MODULE  dom_ice  ***
4   !! LIM Sea Ice :   Domain  variables
5   !!======================================================================
6   !! History :
7   !!   2.0  !  03-08  (C. Ethe)  Free form and module
8   !!----------------------------------------------------------------------
9   !!  LIM 2.0, UCL-LODYC-IPSL (2002)
10   !!----------------------------------------------------------------------
11   !! * Modules used
12   USE par_ice
13
14   IMPLICIT NONE
15   PRIVATE
16
17   !! * Share module variables
18   LOGICAL, PUBLIC ::   &  !:
19      l_jeq = .TRUE.       !: Equator inside the domain flag
20
21   INTEGER, PUBLIC ::   &  !:
22      njeq , njeqm1        !: j-index of the equator if it is inside the domain
23      !                    !  (otherwise = jpj+10 (SH) or -10 (SH) )
24
25   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   &  !:
26      fs2cor ,          &  !: coriolis factor
27      fcor   ,          &  !: coriolis coefficient
28      covrai ,          &  !: sine of geographic latitude
29      area   ,          &  !: surface of grid cell
30      tms    , tmu         !: temperature and velocity points masks
31
32   REAL(wp), PUBLIC, DIMENSION(jpi,jpj,2,2) ::   &  !:
33      wght   ,          &  !: weight of the 4 neighbours to compute averages
34      akappa ,          &  !: first group of metric coefficients
35      bkappa               !: third group of metric coefficients
36
37   REAL(wp), PUBLIC, DIMENSION(jpi,jpj,2,2,2,2) ::   &  !:
38      alambd               !: second group of metric coefficients
39
40   !!======================================================================
41END MODULE dom_ice
Note: See TracBrowser for help on using the repository browser.