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 branches/nemo_v3_3_beta/NEMOGCM/NEMO/LIM_SRC_3 – NEMO

source: branches/nemo_v3_3_beta/NEMOGCM/NEMO/LIM_SRC_3/dom_ice.F90 @ 2329

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

update licence of all NEMO files...

  • Property svn:keywords set to Id
File size: 1.6 KB
RevLine 
[825]1MODULE dom_ice
2   !!======================================================================
3   !!                   ***  MODULE  dom_ice  ***
[1608]4   !! LIM-3 Sea Ice :   Domain  variables
[825]5   !!======================================================================
[1608]6   !! History :  3.0  ! 2003-08  (M. Vancoppenolle)  LIM-3
[825]7   !!----------------------------------------------------------------------
8   USE par_ice
9
10   IMPLICIT NONE
11   PRIVATE
12
[1608]13   LOGICAL, PUBLIC ::   l_jeq = .TRUE.       !: Equator inside the domain flag
[825]14
[1608]15   INTEGER, PUBLIC ::   njeq , njeqm1        !: j-index of the equator if it is inside the domain
[825]16
[1608]17   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   fs2cor     !: coriolis factor
18   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   fcor       !: coriolis coefficient
19   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   covrai     !: sine of geographic latitude
20   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   area       !: surface of grid cell
21   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   tms, tmi   !: temperature mask, mask for stress
22   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   tmu, tmv   !: mask at u and v velocity points
23   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   tmf        !: mask at f-point
[825]24
[1608]25   REAL(wp), PUBLIC, DIMENSION(jpi,jpj,2,2) ::   wght     !: weight of the 4 neighbours to compute averages
[825]26
[1608]27   !!----------------------------------------------------------------------
[2287]28   !! NEMO/LIM3 3.3 , UCL - NEMO Consortium (2010)
[1608]29   !! $Id$
[2287]30   !! Software governed by the CeCILL licence (NEMOGCM/NEMO_CeCILL.txt)
[825]31   !!======================================================================
32END MODULE dom_ice
Note: See TracBrowser for help on using the repository browser.