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_c14b.F90 in branches/UKMO/dev_r5518_rnf_fix/NEMOGCM/NEMO/TOP_SRC/C14b – NEMO

source: branches/UKMO/dev_r5518_rnf_fix/NEMOGCM/NEMO/TOP_SRC/C14b/par_c14b.F90 @ 7800

Last change on this file since 7800 was 7800, checked in by frrh, 7 years ago

Strip out svn keywords and properties

File size: 4.0 KB
Line 
1MODULE par_c14b
2   !!======================================================================
3   !!                        ***  par_c14b ***
4   !! TOP :   set the C14 bomb parameters
5   !!======================================================================
6   !! History :   2.0  !  2008-12  (C. Ethe, G. Madec)  revised architecture
7   !!----------------------------------------------------------------------
8   USE par_pisces , ONLY : jp_pisces       !: number of tracers in PISCES
9   USE par_pisces , ONLY : jp_pisces_2d    !: number of 2D diag in PISCES
10   USE par_pisces , ONLY : jp_pisces_3d    !: number of 3D diag in PISCES
11   USE par_pisces , ONLY : jp_pisces_trd   !: number of biological diag in PISCES
12
13   USE par_cfc    , ONLY : jp_cfc          !: number of tracers in CFC
14   USE par_cfc    , ONLY : jp_cfc_2d       !: number of 2D diag in CFC
15   USE par_cfc    , ONLY : jp_cfc_3d       !: number of 3D diag in CFC
16   USE par_cfc    , ONLY : jp_cfc_trd      !: number of biological diag in CFC
17
18
19   IMPLICIT NONE
20
21   INTEGER, PARAMETER ::   jp_lb      =  jp_pisces     + jp_cfc     !: cum. number of pass. tracers
22   INTEGER, PARAMETER ::   jp_lb_2d   =  jp_pisces_2d  + jp_cfc_2d  !:
23   INTEGER, PARAMETER ::   jp_lb_3d   =  jp_pisces_3d  + jp_cfc_3d  !:
24   INTEGER, PARAMETER ::   jp_lb_trd  =  jp_pisces_trd + jp_cfc_trd !:
25   
26#if defined key_c14b
27   !!---------------------------------------------------------------------
28   !!   'key_c14b'   :                                   C14 bomb tracer
29   !!---------------------------------------------------------------------
30   LOGICAL, PUBLIC, PARAMETER ::   lk_c14b     = .TRUE.      !: C14 bomb flag
31   INTEGER, PUBLIC, PARAMETER ::   jp_c14b     =  1          !: number of passive tracers
32   INTEGER, PUBLIC, PARAMETER ::   jp_c14b_2d  =  2          !: additional 2d output arrays ('key_trc_diaadd')
33   INTEGER, PUBLIC, PARAMETER ::   jp_c14b_3d  =  1          !: additional 3d output arrays ('key_trc_diaadd')
34   INTEGER, PUBLIC, PARAMETER ::   jp_c14b_trd =  0          !: number of sms trends for C14
35   INTEGER, PUBLIC, PARAMETER ::   jpc14       = jp_lb + 1   !: assign an index in trc arrays for C14 bomb
36#else
37   !!---------------------------------------------------------------------
38   !!   Default     :                                       No C14 tracer
39   !!---------------------------------------------------------------------
40   LOGICAL, PUBLIC, PARAMETER ::   lk_c14b     = .FALSE.     !: C14 bomb flag
41   INTEGER, PUBLIC, PARAMETER ::   jp_c14b     =  0          !: No C14 tracers
42   INTEGER, PUBLIC, PARAMETER ::   jp_c14b_2d  =  0          !: No C14 additional 2d output arrays
43   INTEGER, PUBLIC, PARAMETER ::   jp_c14b_3d  =  0          !: No C14 additional 3d output arrays
44   INTEGER, PUBLIC, PARAMETER ::   jp_c14b_trd =  0          !: number of sms trends for C14
45#endif
46
47   ! Starting/ending C14 do-loop indices (N.B. no C14 : jp_c14b0 > jp_c14b1 the do-loop are never done)
48   INTEGER, PUBLIC, PARAMETER ::   jp_c14b0     = jp_lb     + 1            !: First index of C14 tracer
49   INTEGER, PUBLIC, PARAMETER ::   jp_c14b1     = jp_lb     + jp_c14b      !: Last  index of C14 tracer
50   INTEGER, PUBLIC, PARAMETER ::   jp_c14b0_2d  = jp_lb_2d  + 1            !: First index of C14 tracer
51   INTEGER, PUBLIC, PARAMETER ::   jp_c14b1_2d  = jp_lb_2d  + jp_c14b_2d   !: Last  index of C14 tracer
52   INTEGER, PUBLIC, PARAMETER ::   jp_c14b0_3d  = jp_lb_3d  + 1            !: First index of C14 tracer
53   INTEGER, PUBLIC, PARAMETER ::   jp_c14b1_3d  = jp_lb_3d  + jp_c14b_3d   !: Last  index of C14 tracer
54   INTEGER, PUBLIC, PARAMETER ::   jp_c14b0_trd = jp_lb_trd + 1            !: First index of C14 tracer
55   INTEGER, PUBLIC, PARAMETER ::   jp_c14b1_trd = jp_lb_trd + jp_c14b_trd  !: Last  index of C14 tracer
56
57   !!----------------------------------------------------------------------
58   !! NEMO/TOP 3.3 , NEMO Consortium (2010)
59   !! $Id$
60   !! Software governed by the CeCILL licence     (NEMOGCM/NEMO_CeCILL.txt)
61   !!======================================================================
62END MODULE par_c14b
Note: See TracBrowser for help on using the repository browser.