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.
trclsm.age.h in trunk/NEMO/TOP_SRC/SMS – NEMO

source: trunk/NEMO/TOP_SRC/SMS/trclsm.age.h @ 186

Last change on this file since 186 was 186, checked in by opalod, 19 years ago

CL + CE : NEMO TRC_SRC start

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 KB
Line 
1C $Id$
2CCC
3CCC                        trclsm.age.h
4CCC                     **********************
5CCC
6CCC  PURPOSE :
7CCC  ---------
8CCC     READ the specific NAMELIST for AGE TRACER model
9CCC
10CC   METHOD :                   : no
11CC   -------
12CC
13CC   INPUT :
14CC   -----
15CC      the namelist FILE ( UNIT numnat ) :
16CC            &natage           : biological parameters
17CC
18CC   OUTPUT :
19CC   ------
20CC      COMMON                  : 
21CC            /cotage/          : biological parameters
22CC
23CC   WORKSPACE :                : no
24CC   ---------
25CC
26CC   MODIFICATIONS:
27CC   --------------
28CC      original  : 02-05 O. Aumont
29CC----------------------------------------------------------------------
30CDIR$ LIST
31CC----------------------------------------------------------------------
32CC local declarations
33CC ==================
34
35#if defined key_passivetrc && defined key_trc_age
36      INTEGER ji
37      CHARACTER*32 clname
38
39CC
40CCC---------------------------------------------------------------------
41CCC  OPA8, LODYC (15/11/96)
42CCC---------------------------------------------------------------------
43C
44C 0. initializations
45C ------------------
46C
47      namelist/natage/tauage1,tauage2
48
49
50      IF(lwp) THEN
51          WRITE(numout,*) ' '
52          WRITE(numout,*) ' ROUTINE trclsm'
53          WRITE(numout,*) ' **************'
54          WRITE(numout,*) ' '
55          WRITE(numout,*) ' namelist for age tracer model'
56          WRITE(numout,*) ' ***************************'
57          WRITE(numout,*) ' '
58      ENDIF
59C
60      numnat=80
61      clname ='namelist_age'
62      OPEN( numnat, FILE= clname, FORM='formatted', STATUS = 'old')
63
64
65C
66C
67C
68C 1.4 namelist natage : restoring time constant
69C
70      tauage1 = 7.
71      tauage2 = 1.
72C
73C
74      READ(numnat,natage)
75C
76      IF(lwp) THEN
77          WRITE(numout,*) 'natage'
78          WRITE(numout,*) ' '
79          WRITE(numout,*)
80     $        ' restoring time constant  tauage1 =', tauage1
81          WRITE(numout,*)
82     $        ' incrementation constant tauage2 =', tauage2
83      ENDIF
84C
85#else
86C
87C no passive tracers
88C
89#endif
Note: See TracBrowser for help on using the repository browser.