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

Last change on this file since 1590 was 1471, checked in by smasson, 15 years ago

remove useless albege,albecn,tauc,scal0,reslum in LIM2/3, see ticket:454

  • Property svn:keywords set to Id
File size: 1.1 KB
Line 
1MODULE par_ice
2   !!======================================================================
3   !!                       ***  MODULE par_ice   ***
4   !! Sea-Ice model : definition of the parameters
5   !!======================================================================
6   !!----------------------------------------------------------------------
7   !!  LIM 3.0, UCL-LOCEAN-IPSL (2008)
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   !ICE THERMODYNAMICS
18   INTEGER , PARAMETER ::      &  !:
19      jkmax    = 6 ,           &  !: maximum number of ice layers
20      nlay_s   = 1                !: number of snow layers
21
22   !ICE MECHANICAL REDISTRIBUTION
23   INTEGER , PARAMETER ::      &  !:
24      jpl      = 5,            &  !: number of ice categories
25      jpm      = 1                !: number of ice types
26
27   !!======================================================================
28END MODULE par_ice
Note: See TracBrowser for help on using the repository browser.