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

source: tags/nemo_v3_1_beta/NEMO/LIM_SRC_2/par_ice_2.F90 @ 4528

Last change on this file since 4528 was 1234, checked in by rblod, 15 years ago

Fix control print problem, see ticket #289

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.6 KB
Line 
1MODULE par_ice_2
2   !!======================================================================
3   !!                       ***  MODULE par_ice_2   ***
4   !! Sea-Ice model : definition of the parameters
5   !!======================================================================
6#if defined key_lim2
7   !!----------------------------------------------------------------------
8   !!  'key_lim2'                                       LIM-2 sea-ice model
9   !!----------------------------------------------------------------------
10   USE par_oce
11
12   IMPLICIT NONE
13   PUBLIC               ! allows par_oce and par_kind to be known in ice modules
14
15   INTEGER, PUBLIC, PARAMETER ::   jpl        = 1              !: number of ice categories (only 1 in LIM-2)
16   INTEGER, PUBLIC, PARAMETER ::   jpkmax     = 1              !: ???
17   INTEGER, PUBLIC, PARAMETER ::   jpsmax     = 2              !: ???
18
19   INTEGER, PUBLIC, PARAMETER ::   jplayers   = 2              !: number of vertical ice layers
20   INTEGER, PUBLIC, PARAMETER ::   jplayersp1 = jplayers + 1   !: ???
21
22#else
23   !!----------------------------------------------------------------------
24   !!  Default option                                No LIM-2 sea-ice model
25   !!----------------------------------------------------------------------
26#endif
27   !!----------------------------------------------------------------------
28   !! NEMO/LIM 2.0, UCL-LOCEAN-IPSL (2008)
29   !! $Id$
30   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt)
31   !!======================================================================
32END MODULE par_ice_2
Note: See TracBrowser for help on using the repository browser.