/[MITgcm]/MITgcm/pkg/dic/dic_biotic_param.F
ViewVC logotype

Contents of /MITgcm/pkg/dic/dic_biotic_param.F

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download)
Wed Jun 25 21:00:36 2003 UTC (20 years, 11 months ago) by stephd
Branch: MAIN
CVS Tags: checkpoint51j_post, branchpoint-genmake2, checkpoint51e_post, checkpoint51b_post, checkpoint51c_post, checkpoint51f_pre, checkpoint51b_pre, checkpoint51h_pre, checkpoint51g_post, checkpoint51f_post, checkpoint51d_post, checkpoint51a_post, checkpoint51i_pre
Branch point for: branch-genmake2
initial checking in biogeochemistry packages

1
2 #include "CPP_OPTIONS.h"
3 #include "GCHEM_OPTIONS.h"
4
5 CStartOfInterface
6 SUBROUTINE DIC_BIOTIC_PARAM( myThid )
7 C /==========================================================\
8 C | SUBROUTINE DIC_BIOTIC_PARAM |
9 C | o Set parameters needed for |
10 C | o Abiotic Carbon (DIC) and biotic |
11 C |==========================================================|
12 C \==========================================================/
13 IMPLICIT NONE
14
15 C === Global variables ===
16 #include "SIZE.h"
17 #include "EEPARAMS.h"
18 #include "PARAMS.h"
19 #include "GRID.h"
20 #include "DYNVARS.h"
21 #ifdef DIC_BIOTIC
22 #include "DIC_BIOTIC.h"
23 #endif
24
25 C == Routine arguments ==
26 C myThid - Number of this instance of INI_TR1
27 INTEGER myThid
28 CEndOfInterface
29
30 C == Local variables ==
31 INTEGER i,j,k,bi,bj
32
33 #ifdef DIC_BIOTIC
34
35
36 C fraction of new production going to DOP
37 DOPfraction = 0.67
38 C DOP remineralization rate (s)
39 KDOPRemin = 1.0/(0.5*360.*86400.)
40 C remin power law coeff
41 Kremin = 0.9
42 C critical depth (m)
43 zcrit = 50.0
44 nlev=10
45 ccritical oxygen level (mol m-3)
46 O2crit = 4.0d-3
47 C set stoichiometric ratios
48 R_op = -170.0
49 R_cp = 117.0
50 R_np = 16.0
51 R_fep= 0.000468
52 C set scale depth for CaCO3 remineralization (m)
53 zca = 3500.0
54 cn parameters for light/nutrient limited bioac
55 k0=0.02 !light attentuation coefficient
56 lit0=30 ! half saturation light constant (W/m2)
57 Kpo4 = 5.d-4 ! half saturation phosphate constant (mol/m3)
58 Kfe = 0.00000012 ! half saturation fe constant (mol/m3)
59 Kfe = 1.2e-7 ! half saturation fe constant (mol/m3)
60 c iron chemisty values
61 alpfe = 0.01 ! solubility of aeolian fe
62 c KScav = 0.19/(360.*86400.) ! scavenging rate QQ
63 c ligand_stab= 1.d8 ! ligand-fre iron stability constant (m3/mol)
64 c ligand_tot = 0.000001 ! total free ligand (mol/m3)
65 c
66 c
67 c control variables
68 KScav = 0.19/(360.*86400.) ! iron scavenging rate QQ
69 ligand_stab= 1.d8 ! ligand-free iron stability constant (m3/mol)
70 ligand_tot = 0.000001 ! total free ligand (mol/m3)
71 DO bj = myByLo(myThid), myByHi(myThid)
72 DO bi = myBxLo(myThid), myBxHi(myThid)
73 DO j=1-Oly,sNy+Oly
74 DO i=1-Olx,sNx+Olx
75 C timescape for biological activity
76 alpha(i,j,bi,bj)= 2d-3/(24*60*60*360)
77 C set inorganic/organic carbon rain ratio
78 rain_ratio(i,j,bi,bj)=0.07
79 ENDDO
80 ENDDO
81 ENDDO
82 ENDDO
83
84 #endif
85
86 RETURN
87 END

  ViewVC Help
Powered by ViewVC 1.1.22