-
Notifications
You must be signed in to change notification settings - Fork 1
/
RMG.log
2537 lines (2251 loc) · 146 KB
/
RMG.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Global RMG Settings:
test_data.directory = /Users/rwest/Code/Cat/RMG-Py/rmgpy/test_data (Default, relative to RMG-Py source code)
database.directory = /Users/rwest/Code/Cat/RMG-database/input (Default, relative to RMG-Py source code)
RMG execution initiated at Tue Dec 4 16:42:12 2018
#########################################################
# RMG-Py - Reaction Mechanism Generator in Python #
# Version: 2.2.1-Cat #
# Authors: RMG Developers ([email protected]) #
# P.I.s: William H. Green ([email protected]) #
# Richard H. West ([email protected]) #
# Website: http://reactionmechanismgenerator.github.io/ #
# #
# This heterogeneous catalysis branch developed by: #
# Richard H. West ([email protected]) #
# C. Franklin Goldsmith ([email protected]) #
#########################################################
The current git HEAD for RMG-Py is:
f6f51c2091e531b0a14968717bb4f2055e391877
Tue Dec 4 16:39:28 2018 -0500
The current git HEAD for RMG-database is:
53563a9a0992aaab3baa66ed55c042451bcf4a62
Tue Dec 4 16:40:31 2018 -0500
Reading input file "/Users/rwest/Code/Cat/cpox-methane/input.py"...
# Data sources
database(
thermoLibraries=['surfaceThermoPt', 'primaryThermoLibrary', 'thermo_DFT_CCSDTF12_BAC','DFT_QCI_thermo'],
reactionLibraries = [('CPOX_Pt/Deutschmann2006', False)], # 'CPOX_Pt/Vlachos2007'
seedMechanisms = [],
kineticsDepositories = ['training'],
kineticsFamilies =['surface','default'],
kineticsEstimator = 'rate rules',
bindingEnergies = { # default values
'C':(-6.364, 'eV/molecule'), # Pt(111)
'H':(-2.778, 'eV/molecule'), # Ni(111), until we find the vaule for Pt(111)
'O':(-3.481, 'eV/molecule'), # Pt(111)
}
)
# List of species
species(
label='X',
reactive=True,
structure=adjacencyList("1 X u0"),
)
species(
label='CH4',
reactive=True,
structure=SMILES("[CH4]"),
)
species(
label='O2',
reactive=True,
structure=adjacencyList(
"""
1 O u1 p2 c0 {2,S}
2 O u1 p2 c0 {1,S}
"""),
)
species(
label='N2',
reactive=False,
structure=SMILES("N#N"),
)
species(
label='CO2',
reactive=True,
structure=SMILES("O=C=O"),
)
species(
label='H2O',
reactive=True,
structure=SMILES("O"),
)
species(
label='H2',
reactive=True,
structure=SMILES("[H][H]"),
)
species(
label='CO',
reactive=True,
structure=SMILES("[C-]#[O+]"),
)
species(
label='CH2O',
reactive=True,
structure=SMILES("C=O"),
)
species(
label='CH3',
reactive=True,
structure=SMILES("[CH3]"),
)
species(
label='H',
reactive=True,
structure=SMILES("[H]"),
)
species(
label='CH3OH',
reactive=True,
structure=SMILES("CO"),
)
species(
label='HCO',
reactive=True,
structure=SMILES("[CH]=O"),
)
species(
label='OH',
reactive=True,
structure=SMILES("[OH]"),
)
#----------
# Reaction systems
surfaceReactor(
temperature=(1000,'K'),
initialPressure=(1.0, 'bar'),
initialGasMoleFractions={
"CH4": 0.1,
"O2": 0.1,
"N2": 0.8,
},
initialSurfaceCoverages={
"X": 1.0,
},
surfaceVolumeRatio=(1.e5, 'm^-1'),
surfaceSiteDensity=(2.9e-9, 'mol/cm^2'),
# terminationConversion = { "CH4":0.9,},
terminationTime=(10., 's'),
terminationConversion={'O2': 0.95,}
)
simulator(
atol=1e-18,
rtol=1e-12,
)
model(
toleranceKeepInEdge=0.0,
toleranceMoveToCore=1e-4,
toleranceInterruptSimulation=0.1,
maximumEdgeSpecies=100000
)
options(
units='si',
saveRestartPeriod=None,
generateOutputHTML=True,
generatePlots=False,
saveEdgeSpecies=True,
saveSimulationProfiles=True,
)
Surface reaction system 1
Gas phase mole fractions:
N2 0.8
CH4 0.1
O2 0.1
Total gas phase: 1 moles
Pressure: 1e+05 Pa
Temperature: 1000.0 K
Reactor volume: 0.0831 m3
Surface/volume ratio: 1e+05 m2/m3
Surface site density: 2.9e-05 mol/m2
Surface sites in reactor: 0.241 moles
Initial surface coverages (and amounts):
X 1 = 0.24112 moles
Warning: Generate Output HTML option was turned on. Note that this will slow down model generation.
Warning: Edge species saving was turned on. This will slow down model generation for large simulations.
Loading thermodynamics library from surfaceThermoPt.py in /Users/rwest/Code/Cat/RMG-database/input/thermo/libraries...
Loading thermodynamics library from primaryThermoLibrary.py in /Users/rwest/Code/Cat/RMG-database/input/thermo/libraries...
Loading thermodynamics library from thermo_DFT_CCSDTF12_BAC.py in /Users/rwest/Code/Cat/RMG-database/input/thermo/libraries...
Loading thermodynamics library from DFT_QCI_thermo.py in /Users/rwest/Code/Cat/RMG-database/input/thermo/libraries...
Loading thermodynamics group database from /Users/rwest/Code/Cat/RMG-database/input/thermo/groups...
Loading transport library from GRI-Mech.py in /Users/rwest/Code/Cat/RMG-database/input/transport/libraries...
Loading transport library from NOx2018.py in /Users/rwest/Code/Cat/RMG-database/input/transport/libraries...
Loading transport library from PrimaryTransportLibrary.py in /Users/rwest/Code/Cat/RMG-database/input/transport/libraries...
Loading transport group database from /Users/rwest/Code/Cat/RMG-database/input/transport/groups...
Warning: Requested depository /Users/rwest/Code/Cat/RMG-database/input/kinetics/families/Surface_Adsorption_Single/training/reactions.py does not exist
Warning: Requested depository /Users/rwest/Code/Cat/RMG-database/input/kinetics/families/Surface_Adsorption_vdW/training/reactions.py does not exist
Loading kinetics library CPOX_Pt/Deutschmann2006 from /Users/rwest/Code/Cat/RMG-database/input/kinetics/libraries/CPOX_Pt/Deutschmann2006/reactions.py...
Loading frequencies group database from /Users/rwest/Code/Cat/RMG-database/input/statmech/groups...
Loading Platts additivity group database from /Users/rwest/Code/Cat/RMG-database/input/solvation/groups...
Trimolecular reactions are turned on
Adding rate rules from training set in kinetics families...
Could not find training depository in family Surface_Adsorption_vdW.
Must be because you turned off the training depository.
Could not find training depository in family Surface_Adsorption_Single.
Must be because you turned off the training depository.
Filling in rate rules in kinetics families by averaging...
Adding reaction library CPOX_Pt/Deutschmann2006 to model edge...
Summary of Model Enlargement
---------------------------------
Added 0 new core species
Created 10 new edge species
HX(14)
OX(15)
CH3X(16)
HOX(17)
H2OX(18)
CO2X(19)
OCX(20)
CX(21)
CH2X(22)
CHX(23)
Added 0 new core reactions
Created 18 new edge reactions
X(1) + X(1) + H2(6) <=> HX(14) + HX(14)
X(1) + X(1) + O2(3) <=> OX(15) + OX(15)
X(1) + CH4(2) + OX(15) <=> CH3X(16) + HOX(17)
X(1) + CH4(2) + HOX(17) <=> CH3X(16) + H2OX(18)
X(1) + H2O(5) <=> H2OX(18)
X(1) + CO2(4) <=> CO2X(19)
X(1) + CO(7) <=> OCX(20)
OX(15) + CX(21) <=> X(1) + OCX(20)
OX(15) + OCX(20) <=> X(1) + CO2X(19)
HX(14) + CO2X(19) <=> HOX(17) + OCX(20)
HX(14) + CH2X(22) <=> X(1) + CH3X(16)
HX(14) + CHX(23) <=> X(1) + CH2X(22)
X(1) + CHX(23) <=> HX(14) + CX(21)
HX(14) + OX(15) <=> X(1) + HOX(17)
OX(15) + H2OX(18) <=> HOX(17) + HOX(17)
H2(6) + CX(21) <=> CH2X(22)
HX(14) + HOX(17) <=> X(1) + H2OX(18)
HX(14) + CH3X(16) <=> X(1) + X(1) + CH4(2)
After model enlargement:
The model core has 0 species and 0 reactions
The model edge has 24 species and 18 reactions
NOT generating reactions for unreactive species N2
Summary of Model Enlargement
---------------------------------
Added 1 new core species
N2
Created 0 new edge species
Added 0 new core reactions
Created 0 new edge reactions
After model enlargement:
The model core has 1 species and 0 reactions
The model edge has 23 species and 18 reactions
NOT generating reactions for unreactive species Ar
Summary of Model Enlargement
---------------------------------
Added 1 new core species
Ar
Created 0 new edge species
Added 0 new core reactions
Created 0 new edge reactions
After model enlargement:
The model core has 2 species and 0 reactions
The model edge has 23 species and 18 reactions
NOT generating reactions for unreactive species He
Summary of Model Enlargement
---------------------------------
Added 1 new core species
He
Created 0 new edge species
Added 0 new core reactions
Created 0 new edge reactions
After model enlargement:
The model core has 3 species and 0 reactions
The model edge has 23 species and 18 reactions
NOT generating reactions for unreactive species Ne
Summary of Model Enlargement
---------------------------------
Added 1 new core species
Ne
Created 0 new edge species
Added 0 new core reactions
Created 0 new edge reactions
After model enlargement:
The model core has 4 species and 0 reactions
The model edge has 23 species and 18 reactions
Adding species X(1) to model core
Summary of Model Enlargement
---------------------------------
Added 1 new core species
X(1)
Created 0 new edge species
Added 0 new core reactions
Created 0 new edge reactions
After model enlargement:
The model core has 5 species and 0 reactions
The model edge has 22 species and 18 reactions
Adding species CH4(2) to model core
Summary of Model Enlargement
---------------------------------
Added 1 new core species
CH4(2)
Created 0 new edge species
Added 0 new core reactions
Created 0 new edge reactions
After model enlargement:
The model core has 6 species and 0 reactions
The model edge has 21 species and 18 reactions
Adding species O2(3) to model core
Summary of Model Enlargement
---------------------------------
Added 1 new core species
O2(3)
Created 0 new edge species
Added 0 new core reactions
Created 0 new edge reactions
After model enlargement:
The model core has 7 species and 0 reactions
The model edge has 20 species and 18 reactions
Adding species CO2(4) to model core
Summary of Model Enlargement
---------------------------------
Added 1 new core species
CO2(4)
Created 0 new edge species
Added 0 new core reactions
Created 0 new edge reactions
After model enlargement:
The model core has 8 species and 0 reactions
The model edge has 19 species and 18 reactions
Adding species H2O(5) to model core
Summary of Model Enlargement
---------------------------------
Added 1 new core species
H2O(5)
Created 0 new edge species
Added 0 new core reactions
Created 0 new edge reactions
After model enlargement:
The model core has 9 species and 0 reactions
The model edge has 18 species and 18 reactions
Adding species H2(6) to model core
Summary of Model Enlargement
---------------------------------
Added 1 new core species
H2(6)
Created 0 new edge species
Added 0 new core reactions
Created 0 new edge reactions
After model enlargement:
The model core has 10 species and 0 reactions
The model edge has 17 species and 18 reactions
Adding species CO(7) to model core
Summary of Model Enlargement
---------------------------------
Added 1 new core species
CO(7)
Created 0 new edge species
Added 0 new core reactions
Created 0 new edge reactions
After model enlargement:
The model core has 11 species and 0 reactions
The model edge has 16 species and 18 reactions
Adding species CH2O(8) to model core
Summary of Model Enlargement
---------------------------------
Added 1 new core species
CH2O(8)
Created 0 new edge species
Added 0 new core reactions
Created 0 new edge reactions
After model enlargement:
The model core has 12 species and 0 reactions
The model edge has 15 species and 18 reactions
Adding species CH3(9) to model core
Summary of Model Enlargement
---------------------------------
Added 1 new core species
CH3(9)
Created 0 new edge species
Added 0 new core reactions
Created 0 new edge reactions
After model enlargement:
The model core has 13 species and 0 reactions
The model edge has 14 species and 18 reactions
Adding species H(10) to model core
Summary of Model Enlargement
---------------------------------
Added 1 new core species
H(10)
Created 0 new edge species
Added 0 new core reactions
Created 0 new edge reactions
After model enlargement:
The model core has 14 species and 0 reactions
The model edge has 13 species and 18 reactions
Adding species CH3OH(11) to model core
Summary of Model Enlargement
---------------------------------
Added 1 new core species
CH3OH(11)
Created 0 new edge species
Added 0 new core reactions
Created 0 new edge reactions
After model enlargement:
The model core has 15 species and 0 reactions
The model edge has 12 species and 18 reactions
Adding species HCO(12) to model core
Summary of Model Enlargement
---------------------------------
Added 1 new core species
HCO(12)
Created 0 new edge species
Added 0 new core reactions
Created 0 new edge reactions
After model enlargement:
The model core has 16 species and 0 reactions
The model edge has 11 species and 18 reactions
Adding species OH(13) to model core
Summary of Model Enlargement
---------------------------------
Added 1 new core species
OH(13)
Created 0 new edge species
Added 0 new core reactions
Created 0 new edge reactions
After model enlargement:
The model core has 17 species and 0 reactions
The model edge has 10 species and 18 reactions
Initialization complete. Starting model generation.
Generating initial reactions...
Species with SMILES of [CH2] named CH2(S) based on thermo library name
Species with SMILES of [CH2] named CH2(T) based on thermo library name
Species with SMILES of C[O] named CH3O based on thermo library name
Species with SMILES of [CH2]O named CH2OH based on thermo library name
Species with SMILES of [O] named O(T) based on thermo library name
Species with SMILES of [C-]#[O+].[Ni] named COX based on thermo library name
Species with SMILES of [O]O named HO2 based on thermo library name
Species with SMILES of O=[C]O named HOCO based on thermo library name
Species with SMILES of [O]C=O named formyloxy based on thermo library name
Species with SMILES of COC=O named methyl_formate based on thermo library name
Species with SMILES of CC(=O)O named acetic_acid based on thermo library name
Species with SMILES of CC=O named CH3CHO based on thermo library name
Species with SMILES of [CH]O named HCOH(T) based on thermo library name
Species with SMILES of CO[O] named CH3OO based on thermo library name
Species with SMILES of [O]OC=O named formylperoxy based on thermo library name
Species with SMILES of O=CO named formic_acid based on thermo library name
Species with SMILES of CO[C]=O named CH3OCO based on thermo library name
Species with SMILES of CC([O])=O named acetyloxy based on thermo library name
Species with SMILES of C[C]=O named acetyl based on thermo library name
Species with SMILES of O=CCO named HOCH2CHO based on thermo library name
Species with SMILES of O=[C]C=O named OCHCO based on thermo library name
Species with SMILES of [CH2]OC named CH3OCH2 based on thermo library name
Species with SMILES of CC[O] named CH3CH2O based on thermo library name
Species with SMILES of [CH2]OC=O named CH2OCHO based on thermo library name
Species with SMILES of [O]CC=O named OCH2CHO based on thermo library name
Species with SMILES of [O]CO named HOCH2O based on thermo library name
Generating kinetics for new reactions...
For reaction CH4(2) + O2(3) <=> CH3(9) + HO2(38), Ea raised from 216.4 to 231.5 kJ/mol to match endothermicity of reaction.
For reaction O2(3) + CO2(4) <=> [O]OO[C]=O(45), Ea raised from 401.1 to 405.7 kJ/mol to match endothermicity of reaction.
For reaction O2(3) + CO2(4) <=> [O]OC([O])=O(46), Ea raised from 217.3 to 222.0 kJ/mol to match endothermicity of reaction.
For reaction O2(3) + CH2O(8) <=> [CH2]OO[O](47), Ea raised from 358.5 to 363.2 kJ/mol to match endothermicity of reaction.
For reaction O2(3) + CH2O(8) <=> [O]CO[O](48), Ea raised from 172.4 to 176.3 kJ/mol to match endothermicity of reaction.
For reaction O2(3) + CH2O(8) <=> HCO(12) + HO2(38), Ea raised from 158.7 to 162.5 kJ/mol to match endothermicity of reaction.
For reaction O2(3) + CH3OH(11) <=> HO2(38) + CH2OH(27), Ea raised from 178.9 to 195.8 kJ/mol to match endothermicity of reaction.
For reaction O2(3) + OH(13) <=> [O]OO(51), Ea raised from 14.6 to 20.8 kJ/mol to match endothermicity of reaction.
For reaction CO2(4) + CH3(9) <=> CH3OCO(60), Ea raised from 88.5 to 94.8 kJ/mol to match endothermicity of reaction.
For reaction CO2(4) + CH3(9) <=> acetyloxy(61), Ea raised from 58.1 to 65.1 kJ/mol to match endothermicity of reaction.
For reaction CO2(4) + H(10) <=> formyloxy(40), Ea raised from 47.9 to 52.0 kJ/mol to match endothermicity of reaction.
For reaction CO2(4) + HCO(12) <=> [O]C(=O)C=O(65), Ea raised from 146.3 to 150.3 kJ/mol to match endothermicity of reaction.
For reaction CO2(4) + OH(13) <=> O=[C]OO(66), Ea raised from 264.1 to 266.3 kJ/mol to match endothermicity of reaction.
For reaction CH2O(8) + OH(13) <=> [CH2]OO(80), Ea raised from 140.4 to 146.2 kJ/mol to match endothermicity of reaction.
For reaction HCO(12) + OH(13) <=> formic_acid(55) Ea raised from -1.8 to -1.8 kJ/mol.
Summary of Secondary Model Edge Enlargement
---------------------------------
Added 0 new core species
Created 61 new edge species
CH2(S)(24)
CH2(T)(25)
CH3O(26)
CH2OH(27)
[C]=O(28)
O(T)(29)
C.[Ni](30)
[H][H].[Ni](31)
COX(32)
O=C[Ni](33)
C=O.[Ni](34)
CO[Ni](35)
OC[Ni](36)
CO.[Ni](37)
HO2(38)
HOCO(39)
formyloxy(40)
methyl_formate(41)
acetic_acid(42)
CH3CHO(43)
HCOH(T)(44)
[O]OO[C]=O(45)
[O]OC([O])=O(46)
[CH2]OO[O](47)
[O]CO[O](48)
CH3OO(49)
formylperoxy(50)
[O]OO(51)
[O]C(=O)C([O])=O(52)
[O]C(=O)O[C]=O(53)
O=[C]OO[C]=O(54)
formic_acid(55)
[O]CC([O])=O(56)
[CH2]OC([O])=O(57)
[O]CO[C]=O(58)
[CH2]OO[C]=O(59)
CH3OCO(60)
acetyloxy(61)
O=COCO(62)
O=C(O)CO(63)
O=[C]OC=O(64)
[O]C(=O)C=O(65)
O=[C]OO(66)
[O]C(=O)O(67)
acetyl(68)
HOCH2CHO(69)
OCHCO(70)
[O]CC[O](71)
[CH2]OC[O](72)
[CH2]OO[CH2](73)
C1COO1(74)
C1OCO1(75)
CH3OCH2(76)
CH3CH2O(77)
CH2OCHO(78)
OCH2CHO(79)
[CH2]OO(80)
HOCH2O(81)
CC(82)
O=CC=O(83)
OO(84)
Added 17 new core reactions
CH3(9) + H(10) <=> CH4(2)
H(10) + OH(13) <=> H2O(5)
H(10) + H(10) <=> H2(6)
H(10) + HCO(12) <=> CH2O(8)
H2(6) + CO(7) <=> CH2O(8)
CH3(9) + OH(13) <=> CH3OH(11)
CO(7) + H(10) <=> HCO(12)
CH3(9) + HCO(12) <=> CH4(2) + CO(7)
CH4(2) + H(10) <=> H2(6) + CH3(9)
CH4(2) + HCO(12) <=> CH2O(8) + CH3(9)
CH4(2) + OH(13) <=> H2O(5) + CH3(9)
HCO(12) + OH(13) <=> H2O(5) + CO(7)
H2(6) + OH(13) <=> H2O(5) + H(10)
CH2O(8) + OH(13) <=> H2O(5) + HCO(12)
H(10) + HCO(12) <=> H2(6) + CO(7)
H2(6) + HCO(12) <=> CH2O(8) + H(10)
HCO(12) + HCO(12) <=> CO(7) + CH2O(8)
Created 154 new edge reactions
H2(6) + CH2(S)(24) <=> CH4(2)
H(10) + CH2(T)(25) <=> CH3(9)
H(10) + CH3O(26) <=> CH3OH(11)
H(10) + CH2OH(27) <=> CH3OH(11)
H2O(5) + CH2(S)(24) <=> CH3OH(11)
H(10) + [C]=O(28) <=> HCO(12)
H(10) + O(T)(29) <=> OH(13)
X(1) + CH4(2) <=> C.[Ni](30)
X(1) + X(1) + H2O(5) <=> HX(14) + HOX(17)
X(1) + H2(6) <=> [H][H].[Ni](31)
X(1) + CO(7) <=> COX(32)
X(1) + X(1) + CH2O(8) <=> HX(14) + O=C[Ni](33)
X(1) + CH2O(8) <=> C=O.[Ni](34)
X(1) + CH3(9) <=> CH3X(16)
X(1) + H(10) <=> HX(14)
X(1) + X(1) + CH3OH(11) <=> CH3X(16) + HOX(17)
X(1) + X(1) + CH3OH(11) <=> HX(14) + CO[Ni](35)
X(1) + X(1) + CH3OH(11) <=> HX(14) + OC[Ni](36)
X(1) + CH3OH(11) <=> CO.[Ni](37)
X(1) + HCO(12) <=> O=C[Ni](33)
X(1) + OH(13) <=> HOX(17)
CH4(2) + O2(3) <=> CH3(9) + HO2(38)
CH3(9) + HOCO(39) <=> CH4(2) + CO2(4)
CH3(9) + formyloxy(40) <=> CH4(2) + CO2(4)
CH4(2) + CO2(4) <=> methyl_formate(41)
CH4(2) + CO2(4) <=> acetic_acid(42)
CH4(2) + CO(7) <=> CH3CHO(43)
CH3(9) + CH2OH(27) <=> CH4(2) + CH2O(8)
CH3(9) + CH3O(26) <=> CH4(2) + CH2O(8)
CH3(9) + HCOH(T)(44) <=> CH4(2) + HCO(12)
O2(3) + CO2(4) <=> [O]OO[C]=O(45)
O2(3) + CO2(4) <=> [O]OC([O])=O(46)
O2(3) + H2O(5) <=> OH(13) + HO2(38)
H2(6) + O2(3) <=> H(10) + HO2(38)
O2(3) + CH2O(8) <=> [CH2]OO[O](47)
O2(3) + CH2O(8) <=> [O]CO[O](48)
O2(3) + CH2O(8) <=> HCO(12) + HO2(38)
HO2(38) + CH2(T)(25) <=> O2(3) + CH3(9)
CH3OO(49) <=> O2(3) + CH3(9)
O2(3) + H(10) <=> HO2(38)
HO2(38) + CH3O(26) <=> O2(3) + CH3OH(11)
O2(3) + CH3OH(11) <=> HO2(38) + CH2OH(27)
O2(3) + HCO(12) <=> CO(7) + HO2(38)
[C]=O(28) + HO2(38) <=> O2(3) + HCO(12)
O2(3) + HCO(12) <=> formylperoxy(50)
O(T)(29) + HO2(38) <=> O2(3) + OH(13)
O2(3) + OH(13) <=> [O]OO(51)
[O]C(=O)C([O])=O(52) <=> CO2(4) + CO2(4)
[O]C(=O)O[C]=O(53) <=> CO2(4) + CO2(4)
O=[C]OO[C]=O(54) <=> CO2(4) + CO2(4)
OH(13) + HOCO(39) <=> H2O(5) + CO2(4)
OH(13) + formyloxy(40) <=> H2O(5) + CO2(4)
H(10) + HOCO(39) <=> H2(6) + CO2(4)
H(10) + formyloxy(40) <=> H2(6) + CO2(4)
H2(6) + CO2(4) <=> formic_acid(55)
HCO(12) + HOCO(39) <=> CO2(4) + CH2O(8)
HCO(12) + formyloxy(40) <=> CO2(4) + CH2O(8)
[O]CC([O])=O(56) <=> CO2(4) + CH2O(8)
[CH2]OC([O])=O(57) <=> CO2(4) + CH2O(8)
[O]CO[C]=O(58) <=> CO2(4) + CH2O(8)
[CH2]OO[C]=O(59) <=> CO2(4) + CH2O(8)
HOCO(39) + CH2(T)(25) <=> CO2(4) + CH3(9)
formyloxy(40) + CH2(T)(25) <=> CO2(4) + CH3(9)
CO2(4) + CH3(9) <=> CH3OCO(60)
CO2(4) + CH3(9) <=> acetyloxy(61)
CO2(4) + H(10) <=> HOCO(39)
CO2(4) + H(10) <=> formyloxy(40)
HOCO(39) + CH2OH(27) <=> CO2(4) + CH3OH(11)
HOCO(39) + CH3O(26) <=> CO2(4) + CH3OH(11)
formyloxy(40) + CH2OH(27) <=> CO2(4) + CH3OH(11)
formyloxy(40) + CH3O(26) <=> CO2(4) + CH3OH(11)
CO2(4) + CH3OH(11) <=> O=COCO(62)
CO2(4) + CH3OH(11) <=> O=C(O)CO(63)
HOCO(39) + [C]=O(28) <=> CO2(4) + HCO(12)
formyloxy(40) + [C]=O(28) <=> CO2(4) + HCO(12)
CO2(4) + HCO(12) <=> O=[C]OC=O(64)
CO2(4) + HCO(12) <=> [O]C(=O)C=O(65)
HOCO(39) + O(T)(29) <=> CO2(4) + OH(13)
formyloxy(40) + O(T)(29) <=> CO2(4) + OH(13)
CO2(4) + OH(13) <=> O=[C]OO(66)
CO2(4) + OH(13) <=> [O]C(=O)O(67)
H2O(5) + CO(7) <=> formic_acid(55)
OH(13) + CH2OH(27) <=> H2O(5) + CH2O(8)
OH(13) + CH3O(26) <=> H2O(5) + CH2O(8)
OH(13) + HCOH(T)(44) <=> H2O(5) + HCO(12)
H(10) + CH2OH(27) <=> H2(6) + CH2O(8)
H(10) + CH3O(26) <=> H2(6) + CH2O(8)
H(10) + HCOH(T)(44) <=> H2(6) + HCO(12)
HCO(12) + CH2(T)(25) <=> CO(7) + CH3(9)
CO(7) + CH3(9) <=> acetyl(68)
HCO(12) + CH3O(26) <=> CO(7) + CH3OH(11)
HCO(12) + CH2OH(27) <=> CO(7) + CH3OH(11)
CO(7) + CH3OH(11) <=> methyl_formate(41)
CO(7) + CH3OH(11) <=> HOCH2CHO(69)
HCO(12) + [C]=O(28) <=> CO(7) + HCO(12)
CO(7) + HCO(12) <=> OCHCO(70)
HCO(12) + O(T)(29) <=> CO(7) + OH(13)
CO(7) + OH(13) <=> HOCO(39)
HCO(12) + CH2OH(27) <=> CH2O(8) + CH2O(8)
HCO(12) + CH3O(26) <=> CH2O(8) + CH2O(8)
[O]CC[O](71) <=> CH2O(8) + CH2O(8)
[CH2]OC[O](72) <=> CH2O(8) + CH2O(8)
[CH2]OO[CH2](73) <=> CH2O(8) + CH2O(8)
CH2O(8) + CH2O(8) <=> C1COO1(74)
CH2O(8) + CH2O(8) <=> C1OCO1(75)
CH2OH(27) + CH2(T)(25) <=> CH2O(8) + CH3(9)
CH3O(26) + CH2(T)(25) <=> CH2O(8) + CH3(9)
CH2O(8) + CH3(9) <=> CH3OCH2(76)
CH2O(8) + CH3(9) <=> CH3CH2O(77)
CH2O(8) + H(10) <=> CH2OH(27)
CH2O(8) + H(10) <=> CH3O(26)
CH2OH(27) + CH2OH(27) <=> CH2O(8) + CH3OH(11)
CH3O(26) + CH2OH(27) <=> CH2O(8) + CH3OH(11)
CH3O(26) + CH2OH(27) <=> CH2O(8) + CH3OH(11)
CH3O(26) + CH3O(26) <=> CH2O(8) + CH3OH(11)
HCO(12) + HCOH(T)(44) <=> CH2O(8) + HCO(12)
[C]=O(28) + CH2OH(27) <=> CH2O(8) + HCO(12)
[C]=O(28) + CH3O(26) <=> CH2O(8) + HCO(12)
CH2O(8) + HCO(12) <=> CH2OCHO(78)
CH2O(8) + HCO(12) <=> OCH2CHO(79)
O(T)(29) + CH2OH(27) <=> CH2O(8) + OH(13)
O(T)(29) + CH3O(26) <=> CH2O(8) + OH(13)
CH2O(8) + OH(13) <=> [CH2]OO(80)
CH2O(8) + OH(13) <=> HOCH2O(81)
CH4(2) + CH2(T)(25) <=> CH3(9) + CH3(9)
CH3(9) + CH3(9) <=> CC(82)
H2(6) + CH2(T)(25) <=> CH3(9) + H(10)
CH4(2) + CH3O(26) <=> CH3(9) + CH3OH(11)
CH3(9) + CH3OH(11) <=> CH4(2) + CH2OH(27)
HCOH(T)(44) + CH2(T)(25) <=> CH3(9) + HCO(12)
CH2O(8) + CH2(T)(25) <=> CH3(9) + HCO(12)
CH4(2) + [C]=O(28) <=> CH3(9) + HCO(12)
CH3(9) + HCO(12) <=> CH3CHO(43)
CH3(9) + OH(13) <=> H2O(5) + CH2(T)(25)
CH4(2) + O(T)(29) <=> CH3(9) + OH(13)
H(10) + CH3OH(11) <=> H2(6) + CH3O(26)
H(10) + CH3OH(11) <=> H2(6) + CH2OH(27)
H2(6) + [C]=O(28) <=> H(10) + HCO(12)
H2(6) + O(T)(29) <=> H(10) + OH(13)
HCOH(T)(44) + CH2OH(27) <=> CH3OH(11) + HCO(12)
HCOH(T)(44) + CH3O(26) <=> CH3OH(11) + HCO(12)
CH2O(8) + CH3O(26) <=> CH3OH(11) + HCO(12)
CH2O(8) + CH2OH(27) <=> CH3OH(11) + HCO(12)
CH3OH(11) + OH(13) <=> H2O(5) + CH3O(26)
CH3OH(11) + OH(13) <=> H2O(5) + CH2OH(27)
HCOH(T)(44) + [C]=O(28) <=> HCO(12) + HCO(12)
CH2O(8) + [C]=O(28) <=> HCO(12) + HCO(12)
HCO(12) + HCO(12) <=> O=CC=O(83)
HCOH(T)(44) + O(T)(29) <=> HCO(12) + OH(13)
H2O(5) + [C]=O(28) <=> HCO(12) + OH(13)
CH2O(8) + O(T)(29) <=> HCO(12) + OH(13)
HCO(12) + OH(13) <=> formic_acid(55)
H2O(5) + O(T)(29) <=> OH(13) + OH(13)
OH(13) + OH(13) <=> OO(84)
After model enlargement:
The model core has 17 species and 17 reactions
The model edge has 71 species and 172 reactions
Completed initial enlarge edge step.
Saving current model core to Chemkin file...
Chemkin file contains 17 reactions.
Chemkin file contains 0 reactions.
Saving annotated version of Chemkin files...
Chemkin file contains 17 reactions.
Chemkin file contains 0 reactions.
Saving current model core and edge to Chemkin file...
Chemkin file contains 157 reactions.
Chemkin file contains 32 reactions.
Saving annotated version of Chemkin files...
Chemkin file contains 157 reactions.
Chemkin file contains 32 reactions.
Saving current model core to HTML file...
Saving current model edge to HTML file...
Updating RMG execution statistics...
Execution time (DD:HH:MM:SS): 00:00:03:08
Memory used: 573.14 MB
Beginning model generation stage 1...
Conducting simulation of reaction system 1...
At time 0.0000e+00 s, species HX(14) at 14514021602.2 exceeded the minimum rate for simulation interruption of 0.1
At time 0.0000e+00 s, species OX(15) at 2.82024509718e+12 exceeded the minimum rate for simulation interruption of 0.1
At time 0.0000e+00 s, species CH3X(16) at 14514021602.2 exceeded the minimum rate for simulation interruption of 0.1
At time 0.0000e+00 s, species C.[Ni](30) at 8.05732696408e+12 exceeded the minimum rate for simulation interruption of 0.1
At time 0.0000e+00 s, species HO2(38) at 94.7578315176 exceeded the minimum rate for simulation interruption of 0.1
Exceeded max number of objects...removing excess objects
Reached max number of objects...preparing to terminate
At time 0.0000e+00 s, species C.[Ni](30) at rate ratio 8.05732696408e+12 exceeded the minimum rate for moving to model core of 0.0001
terminating simulation due to interrupt...
Adding species C.[Ni](30) to model core
Summary of Model Enlargement
---------------------------------
Added 1 new core species
C.[Ni](30)
Created 0 new edge species
Moved 1 reactions from edge to core
X(1) + CH4(2) <=> C.[Ni](30)
Added 0 new core reactions
Created 0 new edge reactions
After model enlargement:
The model core has 18 species and 18 reactions
The model edge has 70 species and 171 reactions
Summary of Secondary Model Edge Enlargement
---------------------------------
Added 0 new core species
Created 0 new edge species
Added 0 new core reactions
Created 0 new edge reactions
After model enlargement:
The model core has 18 species and 18 reactions
The model edge has 70 species and 171 reactions
Saving current model core to Chemkin file...
Chemkin file contains 17 reactions.
Chemkin file contains 1 reactions.
Saving annotated version of Chemkin files...
Chemkin file contains 17 reactions.
Chemkin file contains 1 reactions.
Saving current model core and edge to Chemkin file...
Chemkin file contains 157 reactions.
Chemkin file contains 32 reactions.
Saving annotated version of Chemkin files...
Chemkin file contains 157 reactions.
Chemkin file contains 32 reactions.
Saving current model core to HTML file...
Saving current model edge to HTML file...
Updating RMG execution statistics...
Execution time (DD:HH:MM:SS): 00:00:03:11
Memory used: 580.72 MB
Conducting simulation of reaction system 1...
At time 0.0000e+00 s, species OX(15) at 0.202085539447 exceeded the minimum rate for simulation interruption of 0.1
Exceeded max number of objects...removing excess objects
Reached max number of objects...preparing to terminate
At time 0.0000e+00 s, species OX(15) at rate ratio 0.202085539447 exceeded the minimum rate for moving to model core of 0.0001
terminating simulation due to interrupt...
Adding species OX(15) to model core
Summary of Model Enlargement
---------------------------------
Added 1 new core species
OX(15)
Created 0 new edge species
Moved 1 reactions from edge to core
X(1) + X(1) + O2(3) <=> OX(15) + OX(15)
Added 0 new core reactions
Created 0 new edge reactions
After model enlargement:
The model core has 19 species and 19 reactions
The model edge has 69 species and 170 reactions
Summary of Secondary Model Edge Enlargement
---------------------------------
Added 0 new core species
Created 0 new edge species
Added 0 new core reactions
Created 0 new edge reactions
After model enlargement:
The model core has 19 species and 19 reactions
The model edge has 69 species and 170 reactions
Saving current model core to Chemkin file...
Chemkin file contains 17 reactions.
Chemkin file contains 2 reactions.
Saving annotated version of Chemkin files...
Chemkin file contains 17 reactions.
Chemkin file contains 2 reactions.
Saving current model core and edge to Chemkin file...
Chemkin file contains 157 reactions.
Chemkin file contains 32 reactions.
Saving annotated version of Chemkin files...
Chemkin file contains 157 reactions.
Chemkin file contains 32 reactions.
Saving current model core to HTML file...
Saving current model edge to HTML file...
Updating RMG execution statistics...
Execution time (DD:HH:MM:SS): 00:00:03:14
Memory used: 589.36 MB
Conducting simulation of reaction system 1...
Exceeded max number of objects...removing excess objects
Reached max number of objects...preparing to terminate
At time 0.0000e+00 s, species CH3X(16) at rate ratio 0.000903419983614 exceeded the minimum rate for moving to model core of 0.0001
terminating simulation due to interrupt...
Adding species CH3X(16) to model core
Summary of Model Enlargement
---------------------------------
Added 1 new core species
CH3X(16)
Created 0 new edge species
Moved 1 reactions from edge to core
X(1) + CH3(9) <=> CH3X(16)
Added 0 new core reactions
Created 0 new edge reactions
After model enlargement:
The model core has 20 species and 20 reactions
The model edge has 68 species and 169 reactions
Generating kinetics for new reactions...
Summary of Secondary Model Edge Enlargement
---------------------------------
Added 0 new core species
Created 0 new edge species
Added 0 new core reactions
Created 3 new edge reactions
HOX(17) + CH2X(22) <=> OX(15) + CH3X(16)
X(1) + CO[Ni](35) <=> OX(15) + CH3X(16)
X(1) + X(1) + CC(82) <=> CH3X(16) + CH3X(16)
After model enlargement:
The model core has 20 species and 20 reactions
The model edge has 68 species and 172 reactions
Saving current model core to Chemkin file...
Chemkin file contains 17 reactions.
Chemkin file contains 3 reactions.
Saving annotated version of Chemkin files...
Chemkin file contains 17 reactions.
Chemkin file contains 3 reactions.
Saving current model core and edge to Chemkin file...
Chemkin file contains 157 reactions.
Chemkin file contains 35 reactions.
Saving annotated version of Chemkin files...
Chemkin file contains 157 reactions.
Chemkin file contains 35 reactions.
Saving current model core to HTML file...
Saving current model edge to HTML file...
Updating RMG execution statistics...
Execution time (DD:HH:MM:SS): 00:00:03:18
Memory used: 594.97 MB
Conducting simulation of reaction system 1...
Reached max number of objects...preparing to terminate
At time 0.0000e+00 s, species HX(14) at rate ratio 0.000903419983614 exceeded the minimum rate for moving to model core of 0.0001
terminating simulation due to interrupt...
Adding species HX(14) to model core