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_2.F90 in branches/dev_002_LIM/NEMO/LIM_SRC_2 – NEMO

source: branches/dev_002_LIM/NEMO/LIM_SRC_2/dom_ice_2.F90 @ 833

Last change on this file since 833 was 823, checked in by rblod, 16 years ago

Final step to rename LIM_SRC in LIM_SRC_2

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