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.
par_ice.F90 in trunk/NEMO/LIM_SRC_3 – NEMO

source: trunk/NEMO/LIM_SRC_3/par_ice.F90 @ 921

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

Correct indentation and print for debug in LIM3, see ticket #134, step I

File size: 1.2 KB
Line 
1MODULE par_ice
2   !!======================================================================
3   !!                       ***  MODULE par_ice   ***
4   !! Sea-Ice model : definition of the parameters
5   !!======================================================================
6   !!----------------------------------------------------------------------
7   !!  LIM 2.0, UCL-LOCEAN-IPSL (2005)
8   !! $ Id: $
9   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt)
10   !!----------------------------------------------------------------------
11   !! * Modules used
12   USE par_oce
13
14   IMPLICIT NONE
15   PUBLIC               ! allows par_oce and par_kind to be known in ice modules
16
17   INTEGER, PARAMETER ::   &  !:
18      jpkmax =   1    ,      &  !: ???
19      jpsmax =  2              !: ???
20
21   !ICE THERMODYNAMICS
22   INTEGER , PARAMETER ::      &  !:
23      jkmax    = 6 ,           &  !: maximum number of ice layers
24      nlay_s   = 1                !: number of snow layers
25
26   !ICE MECHANICAL REDISTRIBUTION
27   INTEGER , PARAMETER ::      &  !:
28      jpl      = 5,            &  !: number of ice categories
29      jpm      = 1                !: number of ice types
30
31   !!======================================================================
32END MODULE par_ice
Note: See TracBrowser for help on using the repository browser.