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 – NEMO

source: trunk/NEMO/LIM_SRC/par_ice.F90 @ 70

Last change on this file since 70 was 12, checked in by opalod, 20 years ago

CT : UPDATE001 : First major NEMO update

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.1 KB
Line 
1MODULE par_ice
2   !!======================================================================
3   !!                       ***  MODULE par_ice   ***
4   !! Sea-Ice model : definition of the parameters
5   !!======================================================================
6   !! * Modules used
7   USE par_oce
8
9   INTEGER, PARAMETER ::   &  !:
10      kmax =   1    ,      &  !: ???
11      nsmax =  2              !: ???
12
13   !!-- Parameter providing the number of vertical ice layers
14   
15   INTEGER , PARAMETER ::      &  !:
16      nlayers   = 2 ,          &  !: ???
17      nlayersp1 = nlayers + 1     !: ???
18
19   ! maximum number of variable for output
20   INTEGER, PARAMETER ::   &  !:
21      noumax = 40             !: ???
22
23   ! Parameters for outputs to files "evolu" made by routine "informe" : ???
24   INTEGER, PARAMETER ::       &  !:
25      ninfmx = 100        ,    &  !: maximum number of key variables
26      nchinf = 5          ,    &  !: ???
27      nchsep = nchinf + 2         !: ???
28
29   !!======================================================================
30END MODULE par_ice
Note: See TracBrowser for help on using the repository browser.