1 |
C $Header: $ |
2 |
C $Name: $ |
3 |
|
4 |
|
5 |
C ========================================================== |
6 |
C Carbon chemistry variables |
7 |
C ========================================================== |
8 |
|
9 |
COMMON /CARBON_NEEDS/ |
10 |
& AtmospCO2, AtmosP, pH, pCO2, FluxCO2, |
11 |
& wind, FIce, Silica |
12 |
_RL AtmospCO2(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
13 |
_RL AtmosP(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
14 |
_RL pH(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy) |
15 |
_RL pCO2(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
16 |
_RL FluxCO2(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
17 |
_RL wind(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
18 |
_RL FIce(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
19 |
_RL Silica(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
20 |
|
21 |
|
22 |
C ========================================================== |
23 |
C Carbon and oxygen chemistry parameters |
24 |
C ========================================================== |
25 |
|
26 |
COMMON /CARBON_CHEM/ |
27 |
& ak0,ak1,ak2,akw,akb,aks,akf, |
28 |
& ak1p,ak2p,ak3p,aksi, fugf, |
29 |
& ff,ft,st,bt, |
30 |
& Ksp_TP_Calc,Ksp_TP_Arag |
31 |
_RL ak0(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
32 |
_RL ak1(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
33 |
_RL ak2(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
34 |
_RL akw(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
35 |
_RL akb(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
36 |
_RL aks(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
37 |
_RL akf(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
38 |
_RL ak1p(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
39 |
_RL ak2p(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
40 |
_RL ak3p(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
41 |
_RL aksi(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
42 |
_RL ff(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
43 |
_RL fugf(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
44 |
_RL ft(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
45 |
_RL st(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
46 |
_RL bt(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
47 |
_RL Ksp_TP_Calc(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
48 |
_RL Ksp_TP_Arag(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
49 |
|
50 |
|
51 |
COMMON /OXYGEN_CHEM/ |
52 |
& oA0,oA1,oA2,oA3,oA4,oA5, |
53 |
& oB0,oB1,oB2,oB3, |
54 |
& oC0 |
55 |
_RL oA0,oA1,oA2,oA3,oA4,oA5 |
56 |
_RL oB0,oB1,oB2,oB3 |
57 |
_RL oC0 |
58 |
|
59 |
|
60 |
COMMON /GLOBAL_SURF_MEAN/ |
61 |
& permil,Pa2Atm |
62 |
|
63 |
C permil : is conversion factor for mol/m3 to mol/kg |
64 |
C assumes uniform (surface) density |
65 |
C Pa2Atm : for conversion of atmospheric pressure |
66 |
C when coming from atmospheric model |
67 |
|
68 |
_RL permil |
69 |
_RL Pa2Atm |
70 |
|
71 |
|
72 |
COMMON /SCHMIDT_NO/ |
73 |
& sca1, sca2, sca3, sca4, |
74 |
& sox1, sox2, sox3, sox4 |
75 |
|
76 |
C Schmidt number coefficients |
77 |
|
78 |
_RL sca1,sca2,sca3,sca4 |
79 |
_RL sox1,sox2,sox3,sox4 |
80 |
|
81 |
|
82 |
C ========================================================== |
83 |
C Bling inputs (specified in data.bling) |
84 |
C ========================================================== |
85 |
|
86 |
COMMON /BLING_INPUTS/ |
87 |
& bling_windFile, bling_atmospFile, bling_iceFile, |
88 |
& bling_ironFile, bling_silicaFile, |
89 |
& bling_forcingPeriod, bling_forcingCycle, |
90 |
& bling_pCO2, |
91 |
& riverconc_dic, riverconc_alk, riverconc_nut, |
92 |
& riverconc_dom, riverconc_o2, riverconc_fe |
93 |
|
94 |
C bling_windFile :: file name of wind speeds |
95 |
C bling_atmospFile :: file name of atmospheric pressure |
96 |
C bling_iceFile :: file name of sea ice fraction |
97 |
C bling_ironFile :: file name of aeolian iron flux |
98 |
C bling_silicaFile :: file name of surface silica |
99 |
C bling_forcingPeriod :: period of forcing for biogeochemistry (seconds) |
100 |
C bling_forcingCycle :: periodic forcing parameter for biogeochemistry |
101 |
C bling_pCO2 :: Atmospheric pCO2 to be read in data.bling |
102 |
C riverconc_* :: River concentration |
103 |
|
104 |
CHARACTER*(MAX_LEN_FNAM) bling_windFile |
105 |
CHARACTER*(MAX_LEN_FNAM) bling_atmospFile |
106 |
CHARACTER*(MAX_LEN_FNAM) bling_iceFile |
107 |
CHARACTER*(MAX_LEN_FNAM) bling_ironFile |
108 |
CHARACTER*(MAX_LEN_FNAM) bling_silicaFile |
109 |
_RL bling_forcingPeriod |
110 |
_RL bling_forcingCycle |
111 |
_RL bling_pCO2 |
112 |
_RL riverconc_dic |
113 |
_RL riverconc_alk |
114 |
_RL riverconc_nut |
115 |
_RL riverconc_dom |
116 |
_RL riverconc_o2 |
117 |
_RL riverconc_fe |
118 |
|
119 |
|
120 |
C ========================================================== |
121 |
C Ecosystem variables and parameters |
122 |
C ========================================================== |
123 |
|
124 |
COMMON /BIOTIC_NEEDS/ |
125 |
& InputFe, |
126 |
& omegaC, |
127 |
& omegaAr, |
128 |
& irr_inst, |
129 |
& irr_mem, |
130 |
& P_sm, |
131 |
& P_lg, |
132 |
& Pstar, |
133 |
& Pc_0, |
134 |
& lambda_0, |
135 |
& resp_frac, |
136 |
& chl_min, |
137 |
& CtoP, |
138 |
& NtoP, |
139 |
& O2toP, |
140 |
& CatoP, |
141 |
& NUTfac, |
142 |
& alpha_max, |
143 |
& alpha_min, |
144 |
& theta_Fe_max_hi, |
145 |
& theta_Fe_max_lo, |
146 |
& gamma_biomass, |
147 |
& gamma_irr_mem, |
148 |
& gamma_DOM, |
149 |
& gamma_POM, |
150 |
& k_Fe, |
151 |
& k_O2, |
152 |
& k_NUT, |
153 |
& k_FetoP, |
154 |
& KFeLeq_max, |
155 |
& KFeLeq_min, |
156 |
& Fe_min, |
157 |
& IFeL, |
158 |
& kFe_org, |
159 |
& kFe_inorg, |
160 |
& FetoP_max, |
161 |
& FetoPsed, |
162 |
& Fe_lim_min, |
163 |
& remin_min, |
164 |
& O2_min, |
165 |
& ligand, |
166 |
& b_const, |
167 |
& kappa_eppley, |
168 |
& kappa_remin, |
169 |
& ca_remin_depth, |
170 |
& phi_DOM, |
171 |
& phi_sm, |
172 |
& phi_lg, |
173 |
& wsink0z, |
174 |
& wsink0, |
175 |
& wsinkacc, |
176 |
& parfrac, |
177 |
& alpfe, |
178 |
& k0, |
179 |
& epsln, |
180 |
& QSW_underice |
181 |
|
182 |
_RL InputFe(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
183 |
_RL omegaC(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy) |
184 |
_RL omegaAr(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy) |
185 |
_RL irr_inst(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy) |
186 |
_RL irr_mem(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy) |
187 |
_RL P_sm(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy) |
188 |
_RL P_lg(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy) |
189 |
_RL Pstar |
190 |
_RL Pc_0 |
191 |
_RL lambda_0 |
192 |
_RL resp_frac |
193 |
_RL chl_min |
194 |
_RL CtoP |
195 |
_RL NtoP |
196 |
_RL O2toP |
197 |
_RL CatoP |
198 |
_RL NUTfac |
199 |
_RL alpha_max |
200 |
_RL alpha_min |
201 |
_RL theta_Fe_max_hi |
202 |
_RL theta_Fe_max_lo |
203 |
_RL gamma_biomass |
204 |
_RL gamma_irr_mem |
205 |
_RL gamma_DOM |
206 |
_RL gamma_POM |
207 |
_RL k_Fe |
208 |
_RL k_O2 |
209 |
_RL k_NUT |
210 |
_RL k_FetoP |
211 |
_RL KFeLeq_max |
212 |
_RL KFeLeq_min |
213 |
_RL Fe_min |
214 |
_RL IFeL |
215 |
_RL kFe_org |
216 |
_RL kFe_inorg |
217 |
_RL FetoP_max |
218 |
_RL FetoPsed |
219 |
_RL Fe_lim_min |
220 |
_RL remin_min |
221 |
_RL O2_min |
222 |
_RL ligand |
223 |
_RL b_const |
224 |
_RL kappa_eppley |
225 |
_RL kappa_remin |
226 |
_RL ca_remin_depth |
227 |
_RL phi_DOM |
228 |
_RL phi_sm |
229 |
_RL phi_lg |
230 |
_RL wsink0z |
231 |
_RL wsink0 |
232 |
_RL wsinkacc |
233 |
_RL parfrac |
234 |
_RL alpfe |
235 |
_RL k0 |
236 |
_RL epsln |
237 |
LOGICAL QSW_underice |
238 |
|
239 |
|
240 |
CEH3 ;;; Local Variables: *** |
241 |
CEH3 ;;; mode:fortran *** |
242 |
CEH3 ;;; End: *** |