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.
bfm.nml in branches/2012/dev_CMCC_2012/NEMOGCM/CONFIG/GYRE_BFM/EXP00 – NEMO

source: branches/2012/dev_CMCC_2012/NEMOGCM/CONFIG/GYRE_BFM/EXP00/bfm.nml @ 3593

Last change on this file since 3593 was 3478, checked in by vichi, 12 years ago

Updated namelist for GYRE_BFM

File size: 6.2 KB
Line 
1!-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
2! MODEL  BFM - Biogeochemical Flux Model
3!-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
4!BOP
5!
6! ROUTINE: Namelist for standalone
7!
8! DESCRIPTION
9!  Parameter values for module standalone filled by init_standalone
10!
11! AUTHORS
12!   Marcello Vichi and Piet Ruardij
13!
14! COPYING
15!   
16!   Copyright (C) 2008 M. Vichi and P. Ruardij
17!   (rua@nioz.nl; vichi@bo.ingv.it)
18!
19!   This program is free software; you can redistribute it and/or modify
20!   it under the terms of the GNU General Public License as published by
21!   the Free Software Foundation;
22!   This program is distributed in the hope that it will be useful,
23!   but WITHOUT ANY WARRANTY; without even the implied warranty of
24!   MERCHANTEABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25!   GNU General Public License for more details.
26!
27!EOP
28!-------------------------------------------------------------------------!
29!BOC
30
31!-------------------------------------------------------------------------!
32!NAMELIST bfm_nml
33!-------------------------------------------------------------------------!
34!Main initialisation and output specifications
35!NAME           KIND    DESCRIPTION
36!bio_calc   logical  Switch on/off BFM (for coupled configurations)
37!bfm_init       integer Initialization state
38!                       0. from constant values in bfm_init_nml below
39!                       1. from restart
40!bio_setup  integer BFM configuration:
41!        1. pelagic
42!        2. benthic
43!        3. pelagic and benthic
44!out_fname  string   Name of NetCDF output file
45!out_dir    string   Path to the output file
46!out_title  string   Name of the experiment in NetCDF file
47!out_delta  integer Output is saved every out_delta timesteps
48!-------------------------------------------------------------------------!
49&bfm_nml
50    bio_calc = .true.
51    bfm_init = 0
52   bio_setup = 1
53  bfm_rstctl = .FALSE.
54   out_fname = 'BFM_NEMO'
55     out_dir = '.'
56   out_title = 'BFM'
57   out_delta = 12
58   parallel_log = .TRUE.
59/
60
61!-------------------------------------------------------------------------!
62!NAMELIST bfm_init_nml
63!-------------------------------------------------------------------------!
64!Pelagic initialisation
65! pelagic  (O)              O2:   Oxygen (mmol/m3)
66! pelagic  (P)              N1:   Phosphate (mmol/m3)
67! pelagic  (N)              N3:   Nitrate (mmol/m3)
68! pelagic  (N)              N4:   Ammonium (mmol/m3)
69! pelagic  (Si)             N5:   Silicate (mmol/m3)
70! pelagic  (R)              N6:   Reduction Equivalents (mmol/m3)
71! pelagic  (N)              O4:   N2-sink (mmol/m3)
72! pelagic  (CNP)            B1:   Pelagic Bacteria
73! pelagic  (CNPSiI)         P1:   Diatoms (group PhytoPlankton))
74! pelagic  (CNPSiI)         P2:   Flagellates (group PhytoPlankton))
75! pelagic  (CNPSiI)         P3:   PicoPhytoPlankton (group PhytoPlankton))
76! pelagic  (CNPSiI)         P4:   Dinoflagellates (group PhytoPlankton))
77! pelagic  (CNP)            Z3:   Carnivorous mesozooplankton (group MesoZooPlankton))
78! pelagic  (CNP)            Z4:   Omnivorous mesozooplankton (group MesoZooPlankton))
79! pelagic  (CNP)            Z5:   Microzooplankton (group MicroZooPlankton))
80! pelagic  (CNP)            Z6:   Heterotrophic nanoflagellates (HNAN) (group MicroZooPlankton))
81! pelagic  (CNPSi)          R1:   Labile Organic Carbon (LOC)
82! pelagic  (C)              R2:   CarboHydrates (sugars)
83! pelagic  (CNPSi)          R6:   Particulate Organic Carbon (POC)
84! pelagic  (C)              R7:   Refractory Disoolved Organic Carbon
85!<variablename>0 = <realvalue>
86!
87! Initialization with InitVar structure
88! BFM variable information for data input
89! availabel fields:
90! integer init: select the initialization
91!               0 = homogeneous
92!               1 = analytical
93!               2 = from file
94! options for init==1
95! real anv1: value in the surface layer
96! real anz1: depth of the surface layer
97! real anv2: value in the bottom layer
98! real anz2: depth of the bottom layer
99! options for init==2 (not used when coupled with NEMO because
100!                      overridden by values in namelist_top)
101! char filename: name of the input file
102! char  varname: name of the var in input file
103! Options currently used when coupled with NEMO
104! logical obc: variable has open boundary data
105! logical sbc: variable has surface boundary data
106! logical cbc: variable has coastal boundary data
107!-------------------------------------------------------------------------!
108&bfm_init_nml
109   N1p0 = 1.0,
110   N3n0 = 5.0,
111   N4n0 = 1.0,
112   N5s0 = 8.0,
113   N6r0 = 1.0,
114   O2o0 = 300.0,
115   O4n0 = 200.0,
116   P1c0 = 1.0,
117   P2c0 = 1.0,
118   P3c0 = 1.0,
119   P4c0 = 1.0,
120   Z3c0 = 1.0,
121   Z4c0 = 1.0,
122   Z5c0 = 1.0,
123   Z6c0 = 1.0,
124   B1c0 = 1.0,
125   R1c0 = 1.0,
126   R2c0 = 0.1,
127   R6c0 = 1.0,
128   R7c0 = 1.0,
129   O3c0 = 27060.00, ![mgC /m3]  2200 umol/Kg
130   O3h0 = 2660.0,   ![mmol eq/m3]  2600 umol/Kg
131/
132
133!-------------------------------------------------------------------------!
134!NAMELIST bfm_save_nml
135!-------------------------------------------------------------------------!
136!Stored variables
137!ave_save: average values over the output interval
138!var_save: instantaneous value at the output interval
139!-------------------------------------------------------------------------!
140&bfm_save_nml
141   ave_save = 'ETW','O2o','O3c','O3h',
142          'EIR',
143          'N1p',
144          'N3n',
145          'N4n',
146          'N5s',
147          'P1c',
148          'P2c',
149          'P3c',
150          'P4c',
151          'R1c',
152          'R2c',
153          'R6c',
154          'P1n',
155          'P2n',
156          'P3n',
157          'P4n',
158          'R1n',
159          'R6n',
160          'P1l',
161          'P2l',
162          'P3l',
163          'P4l',
164          'xEPS',
165          'Chla',
166          'eiPI(iiP1)',
167          'eiPI(iiP2)',
168          'eiPI(iiP3)',
169          'eiPI(iiP4)',
170          'qlPc(iiP1)',
171          'qlPc(iiP2)',
172          'qlPc(iiP3)',
173          'qlPc(iiP4)',
174          'qnPc(iiP1)',
175          'qnPc(iiP2)',
176          'qnPc(iiP3)',
177          'qnPc(iiP4)',
178          'qpPc(iiP1)',
179          'qpPc(iiP2)',
180          'qpPc(iiP3)',
181          'qpPc(iiP4)',
182   'sunPI(iiP1)','sunPI(iiP2)','sunPI(iiP3)','sunPI(iiP4)',
183/
184
185!EOC
186!-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
187! MODEL  BFM - Biogeochemical Flux Model
188!-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Note: See TracBrowser for help on using the repository browser.