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_sed.F90 in trunk/NEMO/TOP_SRC/SED – NEMO

source: trunk/NEMO/TOP_SRC/SED/par_sed.F90 @ 1250

Last change on this file since 1250 was 1250, checked in by cetlod, 15 years ago

update modules of sediment model to take into account minor modifications, see ticket:297

File size: 2.0 KB
Line 
1MODULE par_sed
2   !!======================================================================
3   !!                        ***  par_sed  ***
4   !! Sediment :   set sediment parameter
5   !!======================================================================
6   !! History :
7   !!        !  06-12  (C. Ethe)  Orignal
8   !!----------------------------------------------------------------------
9#if defined key_sed
10   !! Domain characteristics
11   USE par_kind
12   USE par_oce , ONLY :       &
13      jpi      =>   jpi   ,  & !: first  dimension of grid --> i
14      jpj      =>   jpj   ,  & !: second dimension of grid --> j
15      jpim1    =>   jpim1 ,  & !: jpi - 1
16      jpjm1    =>   jpjm1 ,  & !: jpj - 1
17      jpij     =>   jpij       !: jpi x jpj
18
19#if ! defined key_sed_off
20   USE par_pisces
21#endif
22
23#if defined key_kriest
24   INTEGER, PARAMETER :: jpdta = 11
25#else
26   INTEGER, PARAMETER :: jpdta = 12
27#endif
28
29
30   ! Vertical sediment geometry
31   INTEGER, PARAMETER :: &
32      jpksed   = 11         ,   & !: number of sediment layers
33      jpksedm1 = jpksed - 1 
34     
35   ! sediment tracer species
36   INTEGER, PARAMETER :: &
37      jpsol = 4,         &  !: number of solid component
38      jpwat = 7,         &   !: number of pore water component
39      jpwatp1 = jpwat + 1
40
41   
42   ! pore water components       
43   INTEGER, PARAMETER :: &
44      jwsil  = 1,        & !: silic acid
45      jwoxy  = 2,        & !: oxygen
46      jwdic  = 3,        & !: dissolved inorganic carbon
47      jwno3  = 4,        & !: nitrate
48      jwpo4  = 5,        & !: phosphate
49      jwalk  = 6,        & !: alkalinity
50      jwc13  = 7           !: dissolved inorganic carbon 13
51
52   ! solid components       
53   INTEGER, PARAMETER ::  &
54      jsopal  = 1,        & !: opal sediment
55      jsclay  = 2,        & !: clay
56      jspoc   = 3,        & !: organic carbon
57      jscal   = 4           !: calcite
58
59   INTEGER, PARAMETER ::  &
60      jptrased   = jpsol + jpwat , &
61      jpdia3dsed = 3          , &
62      jpdia2dsed = 7
63#endif
64END MODULE par_sed
Note: See TracBrowser for help on using the repository browser.