repo.or.cz
/
WRF.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Merge remote-tracking branch 'origin/release-v4.6.1'
[WRF.git]
/
chem
/
KPP
/
mechanisms
/
cbm4
/
cbm4.def.org
blob
ae2a655a8976f7d527564b116ba761ed31ba9e19
1
#include atoms
2
#include ./cbm4.spc
3
#include ./cbm4.eqn
4
5
#LANGUAGE FORTRAN
6
7
#INTEGRATOR rodas3
8
#DRIVER general
9
10
#LOOKATALL
11
12
#MONITOR O3;
13
14
#INITVALUES
15
CFACTOR = 2.55E+10; {ppb-to-mcm}
16
ALL_SPEC = 1.0E-8;
17
{Variable species}
18
NO = 50.0;
19
NO2 = 20.0;
20
HONO = 1.0;
21
O3 = 100.0;
22
HCHO = 10.0;
23
ALD2 = 10;
24
PAN = 1.0;
25
PAR = 50.0;
26
OLE = 10.0;
27
ETH = 10.0;
28
TOL = 10.0;
29
XYL = 10.0;
30
ISOP = 10.0;
31
CO = 300.0;
32
{Fixed species}
33
H2O = 1.25E+8; {30 %}
34
35
36
#INLINE F_INIT
37
TSTART = 12.D0*3600.D0
38
TEND = TSTART + 24.D0*3600.D0 * 5
39
DT = 3600.D0
40
TEMP = 288.15
41
#ENDINLINE
42
43
44
#INLINE C_INIT
45
TSTART = 12.0*3600.0;
46
TEND = TSTART + 24.0*3600.0*5;
47
DT = 3600.0;
48
TEMP = 288.15;
49
#ENDINLINE
50
51