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 @ 299

Last change on this file since 299 was 247, checked in by opalod, 19 years ago

CL : Add CVS Header and CeCILL licence information

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