|
| 1 | +#!/usr/bin/env python |
| 2 | +# encoding: utf-8 |
| 3 | + |
| 4 | +name = "2001_Tokmakov_H_Toluene_to_CH3_Benzene" |
| 5 | +shortDesc = u"Cantherm computed T,P-dependent rates using quantum calcs of 2001 Tokmakov for H + Toluene = CH3 + Benzene" |
| 6 | +longDesc = u""" |
| 7 | +Computed T,P-dependent k's for the methyl-hydrogen exchange reaction of toluene (H + Toluene = CH3 + Benzene) |
| 8 | +using Cantherm and the molecular properties computed with G2M(cc,MP2)//B3LYP/6-311++G(3df,2p) from: |
| 9 | +I.V. Tokmakov and M.C. Lin, |
| 10 | +"Kinetics and Mechanism for the H-for-X Exchange Process in the H+C6H5X Reactions: A Computational Study", |
| 11 | +Int. J. Chem. Kin., Vol. 33, Iss. 11, November 2001, Pages 633-653 |
| 12 | +Calculated for an N2 bath gas |
| 13 | +""" |
| 14 | +entry( |
| 15 | + index = 1, |
| 16 | + label = "C6H5CH3 + H <=> ipso-(C7H9)", |
| 17 | + degeneracy = 1, |
| 18 | + kinetics = Chebyshev( |
| 19 | + coeffs = [ |
| 20 | + [10.3, 0.4378, -0.06555, 0.0005308], |
| 21 | + [1.278, 0.6505, -0.06177, -0.01036], |
| 22 | + [-0.2451, 0.2798, 0.02277, -0.01323], |
| 23 | + [-0.1451, 0.06763, 0.03706, -0.002604], |
| 24 | + [-0.07194, 0.007107, 0.01811, 0.003786], |
| 25 | + [-0.03465, -0.005259, 0.005851, 0.003213], |
| 26 | + ], |
| 27 | + kunits = 'cm^3/(mol*s)', |
| 28 | + Tmin = (300, 'K'), |
| 29 | + Tmax = (2000, 'K'), |
| 30 | + Pmin = (0.1, 'atm'), |
| 31 | + Pmax = (100, 'atm'), |
| 32 | + ), |
| 33 | +) |
| 34 | + |
| 35 | +entry( |
| 36 | + index = 2, |
| 37 | + label = "ipso-(C7H9) <=> C6H6 + CH3", |
| 38 | + degeneracy = 1, |
| 39 | + kinetics = Chebyshev( |
| 40 | + coeffs = [ |
| 41 | + [4.9, 0.3872, -0.05504, -0.0009308], |
| 42 | + [5.716, 0.6158, -0.06469, -0.007937], |
| 43 | + [-0.3614, 0.3125, 0.005812, -0.01142], |
| 44 | + [-0.208, 0.09791, 0.03132, -0.004837], |
| 45 | + [-0.09645, 0.01443, 0.02134, 0.001782], |
| 46 | + [-0.04212, -0.006098, 0.008707, 0.002987], |
| 47 | + ], |
| 48 | + kunits = 's^-1', |
| 49 | + Tmin = (300, 'K'), |
| 50 | + Tmax = (2000, 'K'), |
| 51 | + Pmin = (0.1, 'atm'), |
| 52 | + Pmax = (100, 'atm'), |
| 53 | + ), |
| 54 | +) |
| 55 | + |
| 56 | +entry( |
| 57 | + index = 3, |
| 58 | + label = "C6H5CH3 + H <=> C6H6 + CH3", |
| 59 | + degeneracy = 1, |
| 60 | + kinetics = Chebyshev( |
| 61 | + coeffs = [ |
| 62 | + [9.422, -0.9213, -0.08453, 0.000839], |
| 63 | + [3.45, 0.7276, -0.0409, -0.0175], |
| 64 | + [0.04877, 0.174, 0.05977, -0.01032], |
| 65 | + [-0.005075, -0.01084, 0.03801, 0.006718], |
| 66 | + [0.03466, -0.004496, 0.004886, 0.006774], |
| 67 | + [0.006253, 0.001523, -0.0008725, 0.001804], |
| 68 | + ], |
| 69 | + kunits = 'cm^3/(mol*s)', |
| 70 | + Tmin = (300, 'K'), |
| 71 | + Tmax = (2000, 'K'), |
| 72 | + Pmin = (0.1, 'atm'), |
| 73 | + Pmax = (100, 'atm'), |
| 74 | + ), |
| 75 | +) |
| 76 | + |
0 commit comments