diff --git a/applications/utilities/thermophysical/chemkinToFoam/chemkinReader/chemkinReader.C b/applications/utilities/thermophysical/chemkinToFoam/chemkinReader/chemkinReader.C index f667a1162d..cc5e513bfb 100644 --- a/applications/utilities/thermophysical/chemkinToFoam/chemkinReader/chemkinReader.C +++ b/applications/utilities/thermophysical/chemkinToFoam/chemkinReader/chemkinReader.C @@ -172,8 +172,7 @@ void Foam::chemkinReader::addReactionType { reactions_.append ( - new IrreversibleReaction - + new IrreversibleReaction ( ReactionProxy ( @@ -192,8 +191,7 @@ void Foam::chemkinReader::addReactionType { reactions_.append ( - new ReversibleReaction - + new ReversibleReaction ( ReactionProxy ( @@ -481,7 +479,10 @@ void Foam::chemkinReader::addReaction reactions_.append ( new NonEquilibriumReversibleReaction - + < + gasHThermoPhysics, + ArrheniusReactionRate + > ( ReactionProxy ( @@ -534,7 +535,6 @@ void Foam::chemkinReader::addReaction ( new NonEquilibriumReversibleReaction < - Reaction, gasHThermoPhysics, thirdBodyArrheniusReactionRate > @@ -640,7 +640,6 @@ void Foam::chemkinReader::addReaction ( new NonEquilibriumReversibleReaction < - Reaction, gasHThermoPhysics, LandauTellerReactionRate > diff --git a/src/OpenFOAM/primitives/strings/string/string.C b/src/OpenFOAM/primitives/strings/string/string.C index 460a0701ab..9059a99e7a 100644 --- a/src/OpenFOAM/primitives/strings/string/string.C +++ b/src/OpenFOAM/primitives/strings/string/string.C @@ -103,36 +103,34 @@ bool Foam::string::removeRepeated(const char character) { bool changed = false; - if (character && find(character) != npos) + string::size_type n = 0; + iterator iter2 = begin(); + + char cPrev = operator[](0) + 1; + + for + ( + string::const_iterator iter1 = iter2; + iter1 != end(); + ++ iter1 + ) { - string::size_type nChar=0; - iterator iter2 = begin(); + char c = *iter1; - char prev = 0; - - for - ( - string::const_iterator iter1 = iter2; - iter1 != end(); - iter1++ - ) + if (c == cPrev && c == character) { - char c = *iter1; - - if (prev == c && c == character) - { - changed = true; - } - else - { - *iter2 = prev = c; - ++iter2; - ++nChar; - } + changed = true; + } + else + { + *iter2 = cPrev = c; + ++ iter2; + ++ n; } - resize(nChar); } + resize(n); + return changed; } @@ -149,10 +147,10 @@ bool Foam::string::removeTrailing(const char character) { bool changed = false; - string::size_type nChar = size(); - if (character && nChar > 1 && operator[](nChar-1) == character) + string::size_type n = size(); + if (n >= 1 && operator[](n - 1) == character) { - resize(nChar-1); + resize(n - 1); changed = true; } @@ -162,9 +160,32 @@ bool Foam::string::removeTrailing(const char character) Foam::string Foam::string::removeTrailing(const char character) const { - string str(*this); - str.removeTrailing(character); - return str; + string result(*this); + result.removeTrailing(character); + return result; +} + + +bool Foam::string::removeTrailing(const string& str) +{ + bool changed = false; + + string::size_type n = size(), nStr = str.size(); + if (n >= str.size() && operator()(n - nStr, nStr) == str) + { + resize(n - nStr); + changed = true; + } + + return changed; +} + + +Foam::string Foam::string::removeTrailing(const string& str) const +{ + string result(*this); + result.removeTrailing(str); + return result; } diff --git a/src/OpenFOAM/primitives/strings/string/string.H b/src/OpenFOAM/primitives/strings/string/string.H index b0b8a3015a..4a54be458a 100644 --- a/src/OpenFOAM/primitives/strings/string/string.H +++ b/src/OpenFOAM/primitives/strings/string/string.H @@ -206,6 +206,12 @@ public: //- Return string with trailing character removed string removeTrailing(const char) const; + //- Remove trailing string returning true if string changed + bool removeTrailing(const string&); + + //- Return string with trailing string removed + string removeTrailing(const string&) const; + // Member Operators diff --git a/src/thermophysicalModels/chemistryModel/reactions/makeReaction.H b/src/thermophysicalModels/chemistryModel/reactions/makeReaction.H index 1c706276ad..ba522e1fab 100644 --- a/src/thermophysicalModels/chemistryModel/reactions/makeReaction.H +++ b/src/thermophysicalModels/chemistryModel/reactions/makeReaction.H @@ -60,7 +60,7 @@ namespace Foam #define makeReactionName(Thermo, ReactionType, ReactionRate) \ typedef Reaction Reaction##Thermo; \ \ - typedef ReactionType \ + typedef ReactionType \ ReactionType##Thermo##ReactionRate; \ \ template<> \ @@ -68,7 +68,6 @@ namespace Foam ( \ ReactionType::typeName_() \ + ReactionRate::type().capitalise() \ - + Reaction##Thermo::typeName_() \ ); diff --git a/src/thermophysicalModels/specie/reaction/Reactions/IrreversibleReaction/IrreversibleReaction.C b/src/thermophysicalModels/specie/reaction/Reactions/IrreversibleReaction/IrreversibleReaction.C index 298ff15ed2..640b0ecf3d 100644 --- a/src/thermophysicalModels/specie/reaction/Reactions/IrreversibleReaction/IrreversibleReaction.C +++ b/src/thermophysicalModels/specie/reaction/Reactions/IrreversibleReaction/IrreversibleReaction.C @@ -27,31 +27,21 @@ License // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::IrreversibleReaction:: +template +Foam::IrreversibleReaction:: IrreversibleReaction ( - const ReactionType& reaction, + const Reaction& reaction, const ReactionRate& k ) : - ReactionType(reaction), + Reaction(reaction), k_(k) {} -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::IrreversibleReaction:: +template +Foam::IrreversibleReaction:: IrreversibleReaction ( const speciesTable& species, @@ -59,18 +49,13 @@ IrreversibleReaction const dictionary& dict ) : - ReactionType(species, thermoDatabase, dict), + Reaction(species, thermoDatabase, dict), k_(species, dict) {} -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::IrreversibleReaction:: +template +Foam::IrreversibleReaction:: IrreversibleReaction ( const speciesTable& species, @@ -79,43 +64,28 @@ IrreversibleReaction const dictionary& dict ) : - ReactionType(species, thermoDatabase, dict), + Reaction(species, thermoDatabase, dict), k_(species, ob, dict) {} -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::IrreversibleReaction:: +template +Foam::IrreversibleReaction:: IrreversibleReaction ( - const IrreversibleReaction& irr, + const IrreversibleReaction& irr, const speciesTable& species ) : - ReactionType(irr, species), + Reaction(irr, species), k_(irr.k_) {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::scalar Foam::IrreversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::kf +template +Foam::scalar Foam::IrreversibleReaction::kf ( const scalar p, const scalar T, @@ -127,18 +97,8 @@ Foam::scalar Foam::IrreversibleReaction } -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::scalar Foam::IrreversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::kr +template +Foam::scalar Foam::IrreversibleReaction::kr ( const scalar kfwd, const scalar p, @@ -151,18 +111,8 @@ Foam::scalar Foam::IrreversibleReaction } -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::scalar Foam::IrreversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::kr +template +Foam::scalar Foam::IrreversibleReaction::kr ( const scalar p, const scalar T, @@ -174,18 +124,8 @@ Foam::scalar Foam::IrreversibleReaction } -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::scalar Foam::IrreversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::dkfdT +template +Foam::scalar Foam::IrreversibleReaction::dkfdT ( const scalar p, const scalar T, @@ -197,18 +137,8 @@ Foam::scalar Foam::IrreversibleReaction } -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::scalar Foam::IrreversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::dkrdT +template +Foam::scalar Foam::IrreversibleReaction::dkrdT ( const scalar p, const scalar T, @@ -222,36 +152,16 @@ Foam::scalar Foam::IrreversibleReaction } -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> +template const Foam::List>& -Foam::IrreversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::beta() const +Foam::IrreversibleReaction::beta() const { return k_.beta(); } -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -void Foam::IrreversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::dcidc +template +void Foam::IrreversibleReaction::dcidc ( const scalar p, const scalar T, @@ -264,18 +174,8 @@ void Foam::IrreversibleReaction } -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::scalar Foam::IrreversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::dcidT +template +Foam::scalar Foam::IrreversibleReaction::dcidT ( const scalar p, const scalar T, @@ -287,19 +187,13 @@ Foam::scalar Foam::IrreversibleReaction } -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -void Foam::IrreversibleReaction:: -write +template +void Foam::IrreversibleReaction::write ( Ostream& os ) const { - ReactionType::write(os); + Reaction::write(os); k_.write(os); } diff --git a/src/thermophysicalModels/specie/reaction/Reactions/IrreversibleReaction/IrreversibleReaction.H b/src/thermophysicalModels/specie/reaction/Reactions/IrreversibleReaction/IrreversibleReaction.H index 7152d78aee..457e0cb3fb 100644 --- a/src/thermophysicalModels/specie/reaction/Reactions/IrreversibleReaction/IrreversibleReaction.H +++ b/src/thermophysicalModels/specie/reaction/Reactions/IrreversibleReaction/IrreversibleReaction.H @@ -46,15 +46,10 @@ namespace Foam Class IrreversibleReaction Declaration \*---------------------------------------------------------------------------*/ -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> +template class IrreversibleReaction : - public ReactionType + public Reaction { // Private Data @@ -72,19 +67,14 @@ public: //- Construct from components IrreversibleReaction ( - const ReactionType& reaction, + const Reaction& reaction, const ReactionRate& reactionRate ); //- Construct as copy given new speciesTable IrreversibleReaction ( - const IrreversibleReaction - < - ReactionType, - ReactionThermo, - ReactionRate - >&, + const IrreversibleReaction&, const speciesTable& species ); @@ -110,12 +100,7 @@ public: { return autoPtr> ( - new IrreversibleReaction - < - ReactionType, - ReactionThermo, - ReactionRate - >(*this) + new IrreversibleReaction(*this) ); } @@ -127,12 +112,7 @@ public: { return autoPtr> ( - new IrreversibleReaction - < - ReactionType, - ReactionThermo, - ReactionRate - > + new IrreversibleReaction ( *this, species @@ -240,12 +220,7 @@ public: //- Disallow default bitwise assignment void operator= ( - const IrreversibleReaction - < - ReactionType, - ReactionThermo, - ReactionRate - >& + const IrreversibleReaction& ) = delete; }; diff --git a/src/thermophysicalModels/specie/reaction/Reactions/NonEquilibriumReversibleReaction/NonEquilibriumReversibleReaction.C b/src/thermophysicalModels/specie/reaction/Reactions/NonEquilibriumReversibleReaction/NonEquilibriumReversibleReaction.C index 792d879bfb..6f8a327fce 100644 --- a/src/thermophysicalModels/specie/reaction/Reactions/NonEquilibriumReversibleReaction/NonEquilibriumReversibleReaction.C +++ b/src/thermophysicalModels/specie/reaction/Reactions/NonEquilibriumReversibleReaction/NonEquilibriumReversibleReaction.C @@ -27,43 +27,23 @@ License // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::NonEquilibriumReversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->:: +template +Foam::NonEquilibriumReversibleReaction:: NonEquilibriumReversibleReaction ( - const ReactionType& reaction, + const Reaction& reaction, const ReactionRate& forwardReactionRate, const ReactionRate& reverseReactionRate ) : - ReactionType(reaction), + Reaction(reaction), fk_(forwardReactionRate), rk_(reverseReactionRate) {} -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::NonEquilibriumReversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->:: +template +Foam::NonEquilibriumReversibleReaction:: NonEquilibriumReversibleReaction ( const speciesTable& species, @@ -71,24 +51,14 @@ NonEquilibriumReversibleReaction const dictionary& dict ) : - ReactionType(species, thermoDatabase, dict), + Reaction(species, thermoDatabase, dict), fk_(species, dict.subDict("forward")), rk_(species, dict.subDict("reverse")) {} -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::NonEquilibriumReversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->:: +template +Foam::NonEquilibriumReversibleReaction:: NonEquilibriumReversibleReaction ( const speciesTable& species, @@ -97,36 +67,21 @@ NonEquilibriumReversibleReaction const dictionary& dict ) : - ReactionType(species, thermoDatabase, dict), + Reaction(species, thermoDatabase, dict), fk_(species, ob, dict.subDict("forward")), rk_(species, ob, dict.subDict("reverse")) {} -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::NonEquilibriumReversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->:: +template +Foam::NonEquilibriumReversibleReaction:: NonEquilibriumReversibleReaction ( - const NonEquilibriumReversibleReaction - < - ReactionType, - ReactionThermo, - ReactionRate - >& nerr, + const NonEquilibriumReversibleReaction& nerr, const speciesTable& species ) : - ReactionType(nerr, species), + Reaction(nerr, species), fk_(nerr.fk_), rk_(nerr.rk_) {} @@ -134,19 +89,9 @@ NonEquilibriumReversibleReaction // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> +template Foam::scalar -Foam::NonEquilibriumReversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::kf +Foam::NonEquilibriumReversibleReaction::kf ( const scalar p, const scalar T, @@ -158,19 +103,9 @@ Foam::NonEquilibriumReversibleReaction } -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> +template Foam::scalar -Foam::NonEquilibriumReversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::kr +Foam::NonEquilibriumReversibleReaction::kr ( const scalar, const scalar p, @@ -183,19 +118,9 @@ Foam::NonEquilibriumReversibleReaction } -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> +template Foam::scalar -Foam::NonEquilibriumReversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::kr +Foam::NonEquilibriumReversibleReaction::kr ( const scalar p, const scalar T, @@ -207,19 +132,9 @@ Foam::NonEquilibriumReversibleReaction } -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> +template Foam::scalar -Foam::NonEquilibriumReversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::dkfdT +Foam::NonEquilibriumReversibleReaction::dkfdT ( const scalar p, const scalar T, @@ -231,19 +146,9 @@ Foam::NonEquilibriumReversibleReaction } -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> +template Foam::scalar -Foam::NonEquilibriumReversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::dkrdT +Foam::NonEquilibriumReversibleReaction::dkrdT ( const scalar p, const scalar T, @@ -257,36 +162,18 @@ Foam::NonEquilibriumReversibleReaction } -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> +template const Foam::List>& -Foam::NonEquilibriumReversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::beta() const +Foam::NonEquilibriumReversibleReaction:: +beta() const { return fk_.beta(); } -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -void Foam::NonEquilibriumReversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::dcidc +template +void +Foam::NonEquilibriumReversibleReaction::dcidc ( const scalar p, const scalar T, @@ -299,18 +186,9 @@ void Foam::NonEquilibriumReversibleReaction } -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::scalar Foam::NonEquilibriumReversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::dcidT +template +Foam::scalar +Foam::NonEquilibriumReversibleReaction::dcidT ( const scalar p, const scalar T, @@ -322,23 +200,14 @@ Foam::scalar Foam::NonEquilibriumReversibleReaction } -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -void Foam::NonEquilibriumReversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::write +template +void +Foam::NonEquilibriumReversibleReaction::write ( Ostream& os ) const { - ReactionType::write(os); + Reaction::write(os); os << indent << "forward" << nl; os << indent << token::BEGIN_BLOCK << nl; diff --git a/src/thermophysicalModels/specie/reaction/Reactions/NonEquilibriumReversibleReaction/NonEquilibriumReversibleReaction.H b/src/thermophysicalModels/specie/reaction/Reactions/NonEquilibriumReversibleReaction/NonEquilibriumReversibleReaction.H index 62e116c0ff..dcba36f1f5 100644 --- a/src/thermophysicalModels/specie/reaction/Reactions/NonEquilibriumReversibleReaction/NonEquilibriumReversibleReaction.H +++ b/src/thermophysicalModels/specie/reaction/Reactions/NonEquilibriumReversibleReaction/NonEquilibriumReversibleReaction.H @@ -47,15 +47,10 @@ namespace Foam Class NonEquilibriumReversibleReaction Declaration \*---------------------------------------------------------------------------*/ -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> +template class NonEquilibriumReversibleReaction : - public ReactionType + public Reaction { // Private Data @@ -74,7 +69,7 @@ public: //- Construct from components NonEquilibriumReversibleReaction ( - const ReactionType& reaction, + const Reaction& reaction, const ReactionRate& forwardReactionRate, const ReactionRate& reverseReactionRate ); @@ -83,7 +78,10 @@ public: NonEquilibriumReversibleReaction ( const NonEquilibriumReversibleReaction - &, + < + ReactionThermo, + ReactionRate + >&, const speciesTable& species ); @@ -105,26 +103,35 @@ public: ); //- Construct and return a clone - virtual autoPtr> clone() const + virtual autoPtr> clone() const { - return autoPtr> + return autoPtr> ( new NonEquilibriumReversibleReaction - (*this) + < + ReactionThermo, + ReactionRate + >(*this) ); } //- Construct and return a clone with new speciesTable - virtual autoPtr> clone + virtual autoPtr> clone ( const speciesTable& species ) const { - return autoPtr> + return autoPtr> ( new NonEquilibriumReversibleReaction - - (*this, species) + < + ReactionThermo, + ReactionRate + > + ( + *this, + species + ) ); } @@ -229,7 +236,6 @@ public: ( const NonEquilibriumReversibleReaction < - ReactionType, ReactionThermo, ReactionRate >& diff --git a/src/thermophysicalModels/specie/reaction/Reactions/Reaction/Reaction.C b/src/thermophysicalModels/specie/reaction/Reactions/Reaction/Reaction.C index 77f2dbb574..84ab034a23 100644 --- a/src/thermophysicalModels/specie/reaction/Reactions/Reaction/Reaction.C +++ b/src/thermophysicalModels/specie/reaction/Reactions/Reaction/Reaction.C @@ -164,8 +164,20 @@ Foam::Reaction::New { const word& reactionTypeName = dict.lookup("type"); - typename dictionaryConstructorTable::iterator cstrIter - = dictionaryConstructorTablePtr_->find(reactionTypeName); + typename dictionaryConstructorTable::iterator cstrIter = + dictionaryConstructorTablePtr_->find(reactionTypeName); + + // Backwards compatibility check. Reaction names used to have "Reaction" + // (Reaction::typeName_()) appended. This was removed as it + // is unnecessary given the context in which the reaction is specified. If + // this reaction name was not found, search also for the old name. + if (cstrIter == dictionaryConstructorTablePtr_->end()) + { + cstrIter = dictionaryConstructorTablePtr_->find + ( + reactionTypeName.removeTrailing(typeName_()) + ); + } if (cstrIter == dictionaryConstructorTablePtr_->end()) { @@ -200,40 +212,56 @@ Foam::Reaction::New { return New(species, thermoDatabase, dict); } - else + + const word& reactionTypeName = dict.lookup("type"); + + typename objectRegistryConstructorTable::iterator cstrIter = + objectRegistryConstructorTablePtr_->find(reactionTypeName); + + // Backwards compatibility check. See above. + if (cstrIter == objectRegistryConstructorTablePtr_->end()) { - const word& reactionTypeName = dict.lookup("type"); + cstrIter = objectRegistryConstructorTablePtr_->find + ( + reactionTypeName.removeTrailing(typeName_()) + ); + } - typename objectRegistryConstructorTable::iterator cstrIter - = objectRegistryConstructorTablePtr_->find(reactionTypeName); + if (cstrIter == objectRegistryConstructorTablePtr_->end()) + { + typename dictionaryConstructorTable::iterator cstrIter = + dictionaryConstructorTablePtr_->find(reactionTypeName); - if (cstrIter == objectRegistryConstructorTablePtr_->end()) + // Backwards compatibility check. See above. + if (cstrIter == dictionaryConstructorTablePtr_->end()) { - typename dictionaryConstructorTable::iterator cstrIter - = dictionaryConstructorTablePtr_->find(reactionTypeName); - - if (cstrIter == dictionaryConstructorTablePtr_->end()) - { - FatalErrorInFunction - << "Unknown reaction type " - << reactionTypeName << nl << nl - << "Valid reaction types are :" << nl - << dictionaryConstructorTablePtr_->sortedToc() - << objectRegistryConstructorTablePtr_->sortedToc() - << exit(FatalError); - } - - return autoPtr> + cstrIter = dictionaryConstructorTablePtr_->find ( - cstrIter()(species, thermoDatabase, dict) + reactionTypeName.removeTrailing(typeName_()) ); } + if (cstrIter == dictionaryConstructorTablePtr_->end()) + { + FatalErrorInFunction + << "Unknown reaction type " + << reactionTypeName << nl << nl + << "Valid reaction types are :" << nl + << dictionaryConstructorTablePtr_->sortedToc() + << objectRegistryConstructorTablePtr_->sortedToc() + << exit(FatalError); + } + return autoPtr> ( - cstrIter()(species, thermoDatabase, ob, dict) + cstrIter()(species, thermoDatabase, dict) ); } + + return autoPtr> + ( + cstrIter()(species, thermoDatabase, ob, dict) + ); } diff --git a/src/thermophysicalModels/specie/reaction/Reactions/ReversibleReaction/ReversibleReaction.C b/src/thermophysicalModels/specie/reaction/Reactions/ReversibleReaction/ReversibleReaction.C index d632ed5e5f..4f525b78aa 100644 --- a/src/thermophysicalModels/specie/reaction/Reactions/ReversibleReaction/ReversibleReaction.C +++ b/src/thermophysicalModels/specie/reaction/Reactions/ReversibleReaction/ReversibleReaction.C @@ -27,31 +27,21 @@ License // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::ReversibleReaction:: +template +Foam::ReversibleReaction:: ReversibleReaction ( - const ReactionType& reaction, + const Reaction& reaction, const ReactionRate& k ) : - ReactionType(reaction), + Reaction(reaction), k_(k) {} -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::ReversibleReaction:: +template +Foam::ReversibleReaction:: ReversibleReaction ( const speciesTable& species, @@ -59,18 +49,13 @@ ReversibleReaction const dictionary& dict ) : - ReactionType(species, thermoDatabase, dict), + Reaction(species, thermoDatabase, dict), k_(species, dict) {} -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::ReversibleReaction:: +template +Foam::ReversibleReaction:: ReversibleReaction ( const speciesTable& species, @@ -79,43 +64,28 @@ ReversibleReaction const dictionary& dict ) : - ReactionType(species, thermoDatabase, dict), + Reaction(species, thermoDatabase, dict), k_(species, ob, dict) {} -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::ReversibleReaction:: +template +Foam::ReversibleReaction:: ReversibleReaction ( - const ReversibleReaction& rr, + const ReversibleReaction& rr, const speciesTable& species ) : - ReactionType(rr, species), + Reaction(rr, species), k_(rr.k_) {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::scalar Foam::ReversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::kf +template +Foam::scalar Foam::ReversibleReaction::kf ( const scalar p, const scalar T, @@ -127,18 +97,8 @@ Foam::scalar Foam::ReversibleReaction } -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::scalar Foam::ReversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::kr +template +Foam::scalar Foam::ReversibleReaction::kr ( const scalar kfwd, const scalar p, @@ -151,18 +111,8 @@ Foam::scalar Foam::ReversibleReaction } -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::scalar Foam::ReversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::kr +template +Foam::scalar Foam::ReversibleReaction::kr ( const scalar p, const scalar T, @@ -174,18 +124,8 @@ Foam::scalar Foam::ReversibleReaction } -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::scalar Foam::ReversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::dkfdT +template +Foam::scalar Foam::ReversibleReaction::dkfdT ( const scalar p, const scalar T, @@ -197,18 +137,8 @@ Foam::scalar Foam::ReversibleReaction } -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::scalar Foam::ReversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::dkrdT +template +Foam::scalar Foam::ReversibleReaction::dkrdT ( const scalar p, const scalar T, @@ -224,36 +154,16 @@ Foam::scalar Foam::ReversibleReaction } -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> +template const Foam::List>& -Foam::ReversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::beta() const +Foam::ReversibleReaction::beta() const { return k_.beta(); } -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -void Foam::ReversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::dcidc +template +void Foam::ReversibleReaction::dcidc ( const scalar p, const scalar T, @@ -266,18 +176,8 @@ void Foam::ReversibleReaction } -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -Foam::scalar Foam::ReversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::dcidT +template +Foam::scalar Foam::ReversibleReaction::dcidT ( const scalar p, const scalar T, @@ -289,18 +189,8 @@ Foam::scalar Foam::ReversibleReaction } -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> -void Foam::ReversibleReaction -< - ReactionType, - ReactionThermo, - ReactionRate ->::write +template +void Foam::ReversibleReaction::write ( Ostream& os ) const diff --git a/src/thermophysicalModels/specie/reaction/Reactions/ReversibleReaction/ReversibleReaction.H b/src/thermophysicalModels/specie/reaction/Reactions/ReversibleReaction/ReversibleReaction.H index 03ab96758f..af855cc858 100644 --- a/src/thermophysicalModels/specie/reaction/Reactions/ReversibleReaction/ReversibleReaction.H +++ b/src/thermophysicalModels/specie/reaction/Reactions/ReversibleReaction/ReversibleReaction.H @@ -47,15 +47,10 @@ namespace Foam Class ReversibleReaction Declaration \*---------------------------------------------------------------------------*/ -template -< - template class ReactionType, - class ReactionThermo, - class ReactionRate -> +template class ReversibleReaction : - public ReactionType + public Reaction { // Private Data @@ -73,19 +68,14 @@ public: //- Construct from components ReversibleReaction ( - const ReactionType& reaction, + const Reaction& reaction, const ReactionRate& k ); //- Construct as copy given new speciesTable ReversibleReaction ( - const ReversibleReaction - < - ReactionType, - ReactionThermo, - ReactionRate - >&, + const ReversibleReaction&, const speciesTable& species ); @@ -107,29 +97,23 @@ public: ); //- Construct and return a clone - virtual autoPtr> clone() const + virtual autoPtr> clone() const { - return autoPtr> + return autoPtr> ( - new ReversibleReaction - < - ReactionType, - ReactionThermo, - ReactionRate - >(*this) + new ReversibleReaction(*this) ); } //- Construct and return a clone with new speciesTable - virtual autoPtr> clone + virtual autoPtr> clone ( const speciesTable& species ) const { - return autoPtr> + return autoPtr> ( - new ReversibleReaction - + new ReversibleReaction ( *this, species @@ -236,12 +220,7 @@ public: //- Disallow default bitwise assignment void operator= ( - const ReversibleReaction - < - ReactionType, - ReactionThermo, - ReactionRate - >& + const ReversibleReaction& ) = delete; }; diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/reaction b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/reaction index aba51dce39..9a239e6a08 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/reaction +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/constant/reaction @@ -8,7 +8,7 @@ reaction { - type irreversibleInfiniteReaction; + type irreversibleInfinite; reaction "CH4 + 2O2 + 7.5N2 = CO2 + 2H2O + 7.5N2"; } diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/reaction b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/reaction index ed9f8fa83d..799be6ee84 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/reaction +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/constant/reaction @@ -8,7 +8,7 @@ reaction { - type irreversibleInfiniteReaction; + type irreversibleInfinite; reaction "CH4 + 2O2 + 7.5N2 = CO2 + 2H2O + 7.5N2"; } diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/reactionsGRI b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/reactionsGRI index 8bcd9f798c..2b421aebe5 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/reactionsGRI +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/constant/reactionsGRI @@ -2,7 +2,7 @@ reactions { un-named-reaction-0 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "2O = O2"; A 1.2e+11; beta -1; @@ -51,7 +51,7 @@ reactions } un-named-reaction-1 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "O + H = OH"; A 5e+11; beta -1; @@ -100,7 +100,7 @@ reactions } un-named-reaction-2 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + H2 = H + OH"; A 38.7; beta 2.7; @@ -108,7 +108,7 @@ reactions } un-named-reaction-3 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + HO2 = OH + O2"; A 2e+10; beta 0; @@ -116,7 +116,7 @@ reactions } un-named-reaction-4 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + H2O2 = OH + HO2"; A 9630; beta 2; @@ -124,7 +124,7 @@ reactions } un-named-reaction-5 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH = H + CO"; A 5.7e+10; beta 0; @@ -132,7 +132,7 @@ reactions } un-named-reaction-6 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2 = H + HCO"; A 8e+10; beta 0; @@ -140,7 +140,7 @@ reactions } un-named-reaction-7 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2(S) = H2 + CO"; A 1.5e+10; beta 0; @@ -148,7 +148,7 @@ reactions } un-named-reaction-8 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2(S) = H + HCO"; A 1.5e+10; beta 0; @@ -156,7 +156,7 @@ reactions } un-named-reaction-9 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3 = H + CH2O"; A 5.06e+10; beta 0; @@ -164,7 +164,7 @@ reactions } un-named-reaction-10 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH4 = OH + CH3"; A 1020000; beta 1.5; @@ -172,7 +172,7 @@ reactions } un-named-reaction-11 { - type reversibleArrheniusLindemannFallOffReaction; + type reversibleArrheniusLindemannFallOff; reaction "O + CO = CO2"; k0 { @@ -236,7 +236,7 @@ reactions } un-named-reaction-12 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + HCO = OH + CO"; A 3e+10; beta 0; @@ -244,7 +244,7 @@ reactions } un-named-reaction-13 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + HCO = H + CO2"; A 3e+10; beta 0; @@ -252,7 +252,7 @@ reactions } un-named-reaction-14 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2O = OH + HCO"; A 3.9e+10; beta 0; @@ -260,7 +260,7 @@ reactions } un-named-reaction-15 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2OH = OH + CH2O"; A 1e+10; beta 0; @@ -268,7 +268,7 @@ reactions } un-named-reaction-16 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3O = OH + CH2O"; A 1e+10; beta 0; @@ -276,7 +276,7 @@ reactions } un-named-reaction-17 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3OH = OH + CH2OH"; A 388; beta 2.5; @@ -284,7 +284,7 @@ reactions } un-named-reaction-18 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3OH = OH + CH3O"; A 130; beta 2.5; @@ -292,7 +292,7 @@ reactions } un-named-reaction-19 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H = CH + CO"; A 5e+10; beta 0; @@ -300,7 +300,7 @@ reactions } un-named-reaction-20 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H2 = H + HCCO"; A 13500; beta 2; @@ -308,7 +308,7 @@ reactions } un-named-reaction-21 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H2 = OH + C2H"; A 4.6e+16; beta -1.41; @@ -316,7 +316,7 @@ reactions } un-named-reaction-22 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H2 = CO + CH2"; A 6940; beta 2; @@ -324,7 +324,7 @@ reactions } un-named-reaction-23 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H3 = H + CH2CO"; A 3e+10; beta 0; @@ -332,7 +332,7 @@ reactions } un-named-reaction-24 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H4 = CH3 + HCO"; A 12500; beta 1.83; @@ -340,7 +340,7 @@ reactions } un-named-reaction-25 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H5 = CH3 + CH2O"; A 2.24e+10; beta 0; @@ -348,7 +348,7 @@ reactions } un-named-reaction-26 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H6 = OH + C2H5"; A 89800; beta 1.92; @@ -356,7 +356,7 @@ reactions } un-named-reaction-27 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + HCCO = H + 2CO"; A 1e+11; beta 0; @@ -364,7 +364,7 @@ reactions } un-named-reaction-28 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2CO = OH + HCCO"; A 1e+10; beta 0; @@ -372,7 +372,7 @@ reactions } un-named-reaction-29 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2CO = CH2 + CO2"; A 1750000000; beta 0; @@ -380,7 +380,7 @@ reactions } un-named-reaction-30 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O2 + CO = O + CO2"; A 2500000000; beta 0; @@ -388,7 +388,7 @@ reactions } un-named-reaction-31 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O2 + CH2O = HO2 + HCO"; A 1e+11; beta 0; @@ -396,7 +396,7 @@ reactions } un-named-reaction-32 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "H + O2 = HO2"; A 2.8e+12; beta -0.86; @@ -445,7 +445,7 @@ reactions } un-named-reaction-33 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + 2O2 = HO2 + O2"; A 2.08e+13; beta -1.24; @@ -453,7 +453,7 @@ reactions } un-named-reaction-34 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + O2 + H2O = HO2 + H2O"; A 1.126e+13; beta -0.76; @@ -461,7 +461,7 @@ reactions } un-named-reaction-35 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + O2 + N2 = HO2 + N2"; A 2.6e+13; beta -1.24; @@ -469,7 +469,7 @@ reactions } un-named-reaction-36 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + O2 + AR = HO2 + AR"; A 7e+11; beta -0.8; @@ -477,7 +477,7 @@ reactions } un-named-reaction-37 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + O2 = O + OH"; A 2.65e+13; beta -0.6707; @@ -485,7 +485,7 @@ reactions } un-named-reaction-38 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "2H = H2"; A 1e+12; beta -1; @@ -534,7 +534,7 @@ reactions } un-named-reaction-39 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2H + H2 = 2H2"; A 9e+10; beta -0.6; @@ -542,7 +542,7 @@ reactions } un-named-reaction-40 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2H + H2O = H2 + H2O"; A 6e+13; beta -1.25; @@ -550,7 +550,7 @@ reactions } un-named-reaction-41 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2H + CO2 = H2 + CO2"; A 5.5e+14; beta -2; @@ -558,7 +558,7 @@ reactions } un-named-reaction-42 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "H + OH = H2O"; A 2.2e+16; beta -2; @@ -607,7 +607,7 @@ reactions } un-named-reaction-43 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HO2 = O + H2O"; A 3970000000; beta 0; @@ -615,7 +615,7 @@ reactions } un-named-reaction-44 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HO2 = O2 + H2"; A 4.48e+10; beta 0; @@ -623,7 +623,7 @@ reactions } un-named-reaction-45 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HO2 = 2OH"; A 8.4e+10; beta 0; @@ -631,7 +631,7 @@ reactions } un-named-reaction-46 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + H2O2 = HO2 + H2"; A 12100; beta 2; @@ -639,7 +639,7 @@ reactions } un-named-reaction-47 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + H2O2 = OH + H2O"; A 1e+10; beta 0; @@ -647,7 +647,7 @@ reactions } un-named-reaction-48 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH = C + H2"; A 1.65e+11; beta 0; @@ -655,7 +655,7 @@ reactions } un-named-reaction-49 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2 = CH3"; k0 { @@ -723,7 +723,7 @@ reactions } un-named-reaction-50 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2(S) = CH + H2"; A 3e+10; beta 0; @@ -731,7 +731,7 @@ reactions } un-named-reaction-51 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH3 = CH4"; k0 { @@ -799,7 +799,7 @@ reactions } un-named-reaction-52 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH4 = CH3 + H2"; A 660000; beta 1.62; @@ -807,7 +807,7 @@ reactions } un-named-reaction-53 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + HCO = CH2O"; k0 { @@ -875,7 +875,7 @@ reactions } un-named-reaction-54 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HCO = H2 + CO"; A 7.34e+10; beta 0; @@ -883,7 +883,7 @@ reactions } un-named-reaction-55 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2O = CH2OH"; k0 { @@ -951,7 +951,7 @@ reactions } un-named-reaction-56 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2O = CH3O"; k0 { @@ -1019,7 +1019,7 @@ reactions } un-named-reaction-57 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2O = HCO + H2"; A 57400; beta 1.9; @@ -1027,7 +1027,7 @@ reactions } un-named-reaction-58 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2OH = CH3OH"; k0 { @@ -1095,7 +1095,7 @@ reactions } un-named-reaction-59 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2OH = H2 + CH2O"; A 2e+10; beta 0; @@ -1103,7 +1103,7 @@ reactions } un-named-reaction-60 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2OH = OH + CH3"; A 165000000; beta 0.65; @@ -1111,7 +1111,7 @@ reactions } un-named-reaction-61 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2OH = CH2(S) + H2O"; A 3.28e+10; beta -0.09; @@ -1119,7 +1119,7 @@ reactions } un-named-reaction-62 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH3O = CH3OH"; k0 { @@ -1187,7 +1187,7 @@ reactions } un-named-reaction-63 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3O = H + CH2OH"; A 41500; beta 1.63; @@ -1195,7 +1195,7 @@ reactions } un-named-reaction-64 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3O = H2 + CH2O"; A 2e+10; beta 0; @@ -1203,7 +1203,7 @@ reactions } un-named-reaction-65 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3O = OH + CH3"; A 1500000000; beta 0.5; @@ -1211,7 +1211,7 @@ reactions } un-named-reaction-66 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3O = CH2(S) + H2O"; A 2.62e+11; beta -0.23; @@ -1219,7 +1219,7 @@ reactions } un-named-reaction-67 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3OH = CH2OH + H2"; A 17000; beta 2.1; @@ -1227,7 +1227,7 @@ reactions } un-named-reaction-68 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3OH = CH3O + H2"; A 4200; beta 2.1; @@ -1235,7 +1235,7 @@ reactions } un-named-reaction-69 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H = C2H2"; k0 { @@ -1303,7 +1303,7 @@ reactions } un-named-reaction-70 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H2 = C2H3"; k0 { @@ -1371,7 +1371,7 @@ reactions } un-named-reaction-71 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H3 = C2H4"; k0 { @@ -1439,7 +1439,7 @@ reactions } un-named-reaction-72 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C2H3 = H2 + C2H2"; A 3e+10; beta 0; @@ -1447,7 +1447,7 @@ reactions } un-named-reaction-73 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H4 = C2H5"; k0 { @@ -1515,7 +1515,7 @@ reactions } un-named-reaction-74 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C2H4 = C2H3 + H2"; A 1325; beta 2.53; @@ -1523,7 +1523,7 @@ reactions } un-named-reaction-75 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H5 = C2H6"; k0 { @@ -1591,7 +1591,7 @@ reactions } un-named-reaction-76 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C2H5 = H2 + C2H4"; A 2000000000; beta 0; @@ -1599,7 +1599,7 @@ reactions } un-named-reaction-77 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C2H6 = C2H5 + H2"; A 115000; beta 1.9; @@ -1607,7 +1607,7 @@ reactions } un-named-reaction-78 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HCCO = CH2(S) + CO"; A 1e+11; beta 0; @@ -1615,7 +1615,7 @@ reactions } un-named-reaction-79 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2CO = HCCO + H2"; A 5e+10; beta 0; @@ -1623,7 +1623,7 @@ reactions } un-named-reaction-80 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2CO = CH3 + CO"; A 1.13e+10; beta 0; @@ -1631,7 +1631,7 @@ reactions } un-named-reaction-81 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HCCOH = H + CH2CO"; A 1e+10; beta 0; @@ -1639,7 +1639,7 @@ reactions } un-named-reaction-82 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H2 + CO = CH2O"; k0 { @@ -1707,7 +1707,7 @@ reactions } un-named-reaction-83 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + H2 = H + H2O"; A 216000; beta 1.51; @@ -1715,7 +1715,7 @@ reactions } un-named-reaction-84 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "2OH = H2O2"; k0 { @@ -1783,7 +1783,7 @@ reactions } un-named-reaction-85 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2OH = O + H2O"; A 35.7; beta 2.4; @@ -1791,7 +1791,7 @@ reactions } un-named-reaction-86 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + HO2 = O2 + H2O"; A 1.45e+10; beta 0; @@ -1799,7 +1799,7 @@ reactions } un-named-reaction-87 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + H2O2 = HO2 + H2O"; A 2000000000; beta 0; @@ -1807,7 +1807,7 @@ reactions } un-named-reaction-88 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + H2O2 = HO2 + H2O"; A 1.7e+15; beta 0; @@ -1815,7 +1815,7 @@ reactions } un-named-reaction-89 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C = H + CO"; A 5e+10; beta 0; @@ -1823,7 +1823,7 @@ reactions } un-named-reaction-90 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH = H + HCO"; A 3e+10; beta 0; @@ -1831,7 +1831,7 @@ reactions } un-named-reaction-91 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2 = H + CH2O"; A 2e+10; beta 0; @@ -1839,7 +1839,7 @@ reactions } un-named-reaction-92 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2 = CH + H2O"; A 11300; beta 2; @@ -1847,7 +1847,7 @@ reactions } un-named-reaction-93 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2(S) = H + CH2O"; A 3e+10; beta 0; @@ -1855,7 +1855,7 @@ reactions } un-named-reaction-94 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "OH + CH3 = CH3OH"; k0 { @@ -1923,7 +1923,7 @@ reactions } un-named-reaction-95 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3 = CH2 + H2O"; A 56000; beta 1.6; @@ -1931,7 +1931,7 @@ reactions } un-named-reaction-96 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3 = CH2(S) + H2O"; A 6.44e+14; beta -1.34; @@ -1939,7 +1939,7 @@ reactions } un-named-reaction-97 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH4 = CH3 + H2O"; A 100000; beta 1.6; @@ -1947,7 +1947,7 @@ reactions } un-named-reaction-98 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CO = H + CO2"; A 47600; beta 1.228; @@ -1955,7 +1955,7 @@ reactions } un-named-reaction-99 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + HCO = H2O + CO"; A 5e+10; beta 0; @@ -1963,7 +1963,7 @@ reactions } un-named-reaction-100 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2O = HCO + H2O"; A 3430000; beta 1.18; @@ -1971,7 +1971,7 @@ reactions } un-named-reaction-101 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2OH = H2O + CH2O"; A 5000000000; beta 0; @@ -1979,7 +1979,7 @@ reactions } un-named-reaction-102 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3O = H2O + CH2O"; A 5000000000; beta 0; @@ -1987,7 +1987,7 @@ reactions } un-named-reaction-103 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3OH = CH2OH + H2O"; A 1440; beta 2; @@ -1995,7 +1995,7 @@ reactions } un-named-reaction-104 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3OH = CH3O + H2O"; A 6300; beta 2; @@ -2003,7 +2003,7 @@ reactions } un-named-reaction-105 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H = H + HCCO"; A 2e+10; beta 0; @@ -2011,7 +2011,7 @@ reactions } un-named-reaction-106 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H2 = H + CH2CO"; A 2.18e-07; beta 4.5; @@ -2019,7 +2019,7 @@ reactions } un-named-reaction-107 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H2 = H + HCCOH"; A 504; beta 2.3; @@ -2027,7 +2027,7 @@ reactions } un-named-reaction-108 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H2 = C2H + H2O"; A 33700; beta 2; @@ -2035,7 +2035,7 @@ reactions } un-named-reaction-109 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H2 = CH3 + CO"; A 4.83e-07; beta 4; @@ -2043,7 +2043,7 @@ reactions } un-named-reaction-110 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H3 = H2O + C2H2"; A 5000000000; beta 0; @@ -2051,7 +2051,7 @@ reactions } un-named-reaction-111 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H4 = C2H3 + H2O"; A 3600; beta 2; @@ -2059,7 +2059,7 @@ reactions } un-named-reaction-112 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H6 = C2H5 + H2O"; A 3540; beta 2.12; @@ -2067,7 +2067,7 @@ reactions } un-named-reaction-113 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2CO = HCCO + H2O"; A 7500000000; beta 0; @@ -2075,7 +2075,7 @@ reactions } un-named-reaction-114 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2HO2 = O2 + H2O2"; A 130000000; beta 0; @@ -2083,7 +2083,7 @@ reactions } un-named-reaction-115 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2HO2 = O2 + H2O2"; A 4.2e+11; beta 0; @@ -2091,7 +2091,7 @@ reactions } un-named-reaction-116 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CH2 = OH + CH2O"; A 2e+10; beta 0; @@ -2099,7 +2099,7 @@ reactions } un-named-reaction-117 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CH3 = O2 + CH4"; A 1000000000; beta 0; @@ -2107,7 +2107,7 @@ reactions } un-named-reaction-118 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CH3 = OH + CH3O"; A 3.78e+10; beta 0; @@ -2115,7 +2115,7 @@ reactions } un-named-reaction-119 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CO = OH + CO2"; A 1.5e+11; beta 0; @@ -2123,7 +2123,7 @@ reactions } un-named-reaction-120 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CH2O = HCO + H2O2"; A 5600; beta 2; @@ -2131,7 +2131,7 @@ reactions } un-named-reaction-121 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C + O2 = O + CO"; A 5.8e+10; beta 0; @@ -2139,7 +2139,7 @@ reactions } un-named-reaction-122 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C + CH2 = H + C2H"; A 5e+10; beta 0; @@ -2147,7 +2147,7 @@ reactions } un-named-reaction-123 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C + CH3 = H + C2H2"; A 5e+10; beta 0; @@ -2155,7 +2155,7 @@ reactions } un-named-reaction-124 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + O2 = O + HCO"; A 6.71e+10; beta 0; @@ -2163,7 +2163,7 @@ reactions } un-named-reaction-125 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + H2 = H + CH2"; A 1.08e+11; beta 0; @@ -2171,7 +2171,7 @@ reactions } un-named-reaction-126 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + H2O = H + CH2O"; A 5710000000; beta 0; @@ -2179,7 +2179,7 @@ reactions } un-named-reaction-127 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CH2 = H + C2H2"; A 4e+10; beta 0; @@ -2187,7 +2187,7 @@ reactions } un-named-reaction-128 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CH3 = H + C2H3"; A 3e+10; beta 0; @@ -2195,7 +2195,7 @@ reactions } un-named-reaction-129 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CH4 = H + C2H4"; A 6e+10; beta 0; @@ -2203,7 +2203,7 @@ reactions } un-named-reaction-130 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH + CO = HCCO"; k0 { @@ -2271,7 +2271,7 @@ reactions } un-named-reaction-131 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CO2 = HCO + CO"; A 1.9e+11; beta 0; @@ -2279,7 +2279,7 @@ reactions } un-named-reaction-132 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CH2O = H + CH2CO"; A 9.46e+10; beta 0; @@ -2287,7 +2287,7 @@ reactions } un-named-reaction-133 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + HCCO = CO + C2H2"; A 5e+10; beta 0; @@ -2295,7 +2295,7 @@ reactions } un-named-reaction-134 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH2 + O2 = OH + H + CO"; A 5000000000; beta 0; @@ -2303,7 +2303,7 @@ reactions } un-named-reaction-135 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + H2 = H + CH3"; A 500; beta 2; @@ -2311,7 +2311,7 @@ reactions } un-named-reaction-136 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2CH2 = H2 + C2H2"; A 1.6e+12; beta 0; @@ -2319,7 +2319,7 @@ reactions } un-named-reaction-137 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + CH3 = H + C2H4"; A 4e+10; beta 0; @@ -2327,7 +2327,7 @@ reactions } un-named-reaction-138 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + CH4 = 2CH3"; A 2460; beta 2; @@ -2335,7 +2335,7 @@ reactions } un-named-reaction-139 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH2 + CO = CH2CO"; k0 { @@ -2403,7 +2403,7 @@ reactions } un-named-reaction-140 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + HCCO = C2H3 + CO"; A 3e+10; beta 0; @@ -2411,7 +2411,7 @@ reactions } un-named-reaction-141 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + N2 = CH2 + N2"; A 1.5e+10; beta 0; @@ -2419,7 +2419,7 @@ reactions } un-named-reaction-142 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + AR = CH2 + AR"; A 9000000000; beta 0; @@ -2427,7 +2427,7 @@ reactions } un-named-reaction-143 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + O2 = H + OH + CO"; A 2.8e+10; beta 0; @@ -2435,7 +2435,7 @@ reactions } un-named-reaction-144 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + O2 = CO + H2O"; A 1.2e+10; beta 0; @@ -2443,7 +2443,7 @@ reactions } un-named-reaction-145 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + H2 = CH3 + H"; A 7e+10; beta 0; @@ -2451,7 +2451,7 @@ reactions } un-named-reaction-146 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH2(S) + H2O = CH3OH"; k0 { @@ -2519,7 +2519,7 @@ reactions } un-named-reaction-147 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + H2O = CH2 + H2O"; A 3e+10; beta 0; @@ -2527,7 +2527,7 @@ reactions } un-named-reaction-148 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CH3 = H + C2H4"; A 1.2e+10; beta 0; @@ -2535,7 +2535,7 @@ reactions } un-named-reaction-149 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CH4 = 2CH3"; A 1.6e+10; beta 0; @@ -2543,7 +2543,7 @@ reactions } un-named-reaction-150 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CO = CH2 + CO"; A 9000000000; beta 0; @@ -2551,7 +2551,7 @@ reactions } un-named-reaction-151 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CO2 = CH2 + CO2"; A 7000000000; beta 0; @@ -2559,7 +2559,7 @@ reactions } un-named-reaction-152 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CO2 = CO + CH2O"; A 1.4e+10; beta 0; @@ -2567,7 +2567,7 @@ reactions } un-named-reaction-153 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + C2H6 = CH3 + C2H5"; A 4e+10; beta 0; @@ -2575,7 +2575,7 @@ reactions } un-named-reaction-154 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + O2 = O + CH3O"; A 3.56e+10; beta 0; @@ -2583,7 +2583,7 @@ reactions } un-named-reaction-155 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + O2 = OH + CH2O"; A 2310000000; beta 0; @@ -2591,7 +2591,7 @@ reactions } un-named-reaction-156 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + H2O2 = HO2 + CH4"; A 24.5; beta 2.47; @@ -2599,7 +2599,7 @@ reactions } un-named-reaction-157 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "2CH3 = C2H6"; k0 { @@ -2667,7 +2667,7 @@ reactions } un-named-reaction-158 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2CH3 = H + C2H5"; A 6840000000; beta 0.1; @@ -2675,7 +2675,7 @@ reactions } un-named-reaction-159 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + HCO = CH4 + CO"; A 2.648e+10; beta 0; @@ -2683,7 +2683,7 @@ reactions } un-named-reaction-160 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + CH2O = HCO + CH4"; A 3.32; beta 2.81; @@ -2691,7 +2691,7 @@ reactions } un-named-reaction-161 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + CH3OH = CH2OH + CH4"; A 30000; beta 1.5; @@ -2699,7 +2699,7 @@ reactions } un-named-reaction-162 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + CH3OH = CH3O + CH4"; A 10000; beta 1.5; @@ -2707,7 +2707,7 @@ reactions } un-named-reaction-163 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + C2H4 = C2H3 + CH4"; A 227; beta 2; @@ -2715,7 +2715,7 @@ reactions } un-named-reaction-164 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + C2H6 = C2H5 + CH4"; A 6140; beta 1.74; @@ -2723,7 +2723,7 @@ reactions } un-named-reaction-165 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCO + H2O = H + CO + H2O"; A 1.5e+15; beta -1; @@ -2731,7 +2731,7 @@ reactions } un-named-reaction-166 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "HCO = H + CO"; A 1.87e+14; beta -1; @@ -2780,7 +2780,7 @@ reactions } un-named-reaction-167 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCO + O2 = HO2 + CO"; A 1.345e+10; beta 0; @@ -2788,7 +2788,7 @@ reactions } un-named-reaction-168 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2OH + O2 = HO2 + CH2O"; A 1.8e+10; beta 0; @@ -2796,7 +2796,7 @@ reactions } un-named-reaction-169 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3O + O2 = HO2 + CH2O"; A 4.28e-16; beta 7.6; @@ -2804,7 +2804,7 @@ reactions } un-named-reaction-170 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H + O2 = HCO + CO"; A 1e+10; beta 0; @@ -2812,7 +2812,7 @@ reactions } un-named-reaction-171 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H + H2 = H + C2H2"; A 56800000; beta 0.9; @@ -2820,7 +2820,7 @@ reactions } un-named-reaction-172 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H3 + O2 = HCO + CH2O"; A 4.58e+13; beta -1.39; @@ -2828,7 +2828,7 @@ reactions } un-named-reaction-173 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "C2H4 = H2 + C2H2"; k0 { @@ -2896,7 +2896,7 @@ reactions } un-named-reaction-174 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H5 + O2 = HO2 + C2H4"; A 840000000; beta 0; @@ -2904,7 +2904,7 @@ reactions } un-named-reaction-175 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCCO + O2 = OH + 2CO"; A 3200000000; beta 0; @@ -2912,7 +2912,7 @@ reactions } un-named-reaction-176 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2HCCO = 2CO + C2H2"; A 1e+10; beta 0; @@ -2920,7 +2920,7 @@ reactions } un-named-reaction-177 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O + CH3 = H + H2 + CO"; A 3.37e+10; beta 0; @@ -2928,7 +2928,7 @@ reactions } un-named-reaction-178 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H4 = H + CH2CHO"; A 6700; beta 1.83; @@ -2936,7 +2936,7 @@ reactions } un-named-reaction-179 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H5 = H + CH3CHO"; A 1.096e+11; beta 0; @@ -2944,7 +2944,7 @@ reactions } un-named-reaction-180 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + HO2 = O2 + H2O"; A 5e+12; beta 0; @@ -2952,7 +2952,7 @@ reactions } un-named-reaction-181 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "OH + CH3 = H2 + CH2O"; A 8000000; beta 0.5; @@ -2960,7 +2960,7 @@ reactions } un-named-reaction-182 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH + H2 = CH3"; k0 { @@ -3028,7 +3028,7 @@ reactions } un-named-reaction-183 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH2 + O2 = 2H + CO2"; A 5800000000; beta 0; @@ -3036,7 +3036,7 @@ reactions } un-named-reaction-184 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + O2 = O + CH2O"; A 2400000000; beta 0; @@ -3044,7 +3044,7 @@ reactions } un-named-reaction-185 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH2 + CH2 = 2H + C2H2"; A 2e+11; beta 0; @@ -3052,7 +3052,7 @@ reactions } un-named-reaction-186 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH2(S) + H2O = H2 + CH2O"; A 68200000; beta 0.25; @@ -3060,7 +3060,7 @@ reactions } un-named-reaction-187 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H3 + O2 = O + CH2CHO"; A 303000000; beta 0.29; @@ -3068,7 +3068,7 @@ reactions } un-named-reaction-188 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H3 + O2 = HO2 + C2H2"; A 1337; beta 1.61; @@ -3076,7 +3076,7 @@ reactions } un-named-reaction-189 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3CHO = OH + CH2CHO"; A 2920000000; beta 0; @@ -3084,7 +3084,7 @@ reactions } un-named-reaction-190 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O + CH3CHO = OH + CH3 + CO"; A 2920000000; beta 0; @@ -3092,7 +3092,7 @@ reactions } un-named-reaction-191 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O2 + CH3CHO = HO2 + CH3 + CO"; A 3.01e+10; beta 0; @@ -3100,7 +3100,7 @@ reactions } un-named-reaction-192 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3CHO = CH2CHO + H2"; A 2050000; beta 1.16; @@ -3108,7 +3108,7 @@ reactions } un-named-reaction-193 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "H + CH3CHO = CH3 + H2 + CO"; A 2050000; beta 1.16; @@ -3116,7 +3116,7 @@ reactions } un-named-reaction-194 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "OH + CH3CHO = CH3 + H2O + CO"; A 23430000; beta 0.73; @@ -3124,7 +3124,7 @@ reactions } un-named-reaction-195 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "HO2 + CH3CHO = CH3 + H2O2 + CO"; A 3010000000; beta 0; @@ -3132,7 +3132,7 @@ reactions } un-named-reaction-196 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH3 + CH3CHO = CH3 + CH4 + CO"; A 2720; beta 1.77; @@ -3140,7 +3140,7 @@ reactions } un-named-reaction-197 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2CO = CH2CHO"; k0 { @@ -3208,7 +3208,7 @@ reactions } un-named-reaction-198 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O + CH2CHO = H + CH2 + CO2"; A 1.5e+11; beta 0; @@ -3216,7 +3216,7 @@ reactions } un-named-reaction-199 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O2 + CH2CHO = OH + CO + CH2O"; A 18100000; beta 0; @@ -3224,7 +3224,7 @@ reactions } un-named-reaction-200 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O2 + CH2CHO = OH + 2HCO"; A 23500000; beta 0; @@ -3232,7 +3232,7 @@ reactions } un-named-reaction-201 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2CHO = CH3 + HCO"; A 2.2e+10; beta 0; @@ -3240,7 +3240,7 @@ reactions } un-named-reaction-202 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2CHO = CH2CO + H2"; A 1.1e+10; beta 0; @@ -3248,7 +3248,7 @@ reactions } un-named-reaction-203 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2CHO = H2O + CH2CO"; A 1.2e+10; beta 0; @@ -3256,7 +3256,7 @@ reactions } un-named-reaction-204 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2CHO = HCO + CH2OH"; A 3.01e+10; beta 0; @@ -3264,7 +3264,7 @@ reactions } un-named-reaction-205 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH3 + C2H5 = C3H8"; k0 { @@ -3332,7 +3332,7 @@ reactions } un-named-reaction-206 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C3H8 = OH + C3H7"; A 193; beta 2.68; @@ -3340,7 +3340,7 @@ reactions } un-named-reaction-207 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C3H8 = C3H7 + H2"; A 1320; beta 2.54; @@ -3348,7 +3348,7 @@ reactions } un-named-reaction-208 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C3H8 = C3H7 + H2O"; A 31600; beta 1.8; @@ -3356,7 +3356,7 @@ reactions } un-named-reaction-209 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C3H7 + H2O2 = HO2 + C3H8"; A 0.378; beta 2.72; @@ -3364,7 +3364,7 @@ reactions } un-named-reaction-210 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + C3H8 = C3H7 + CH4"; A 0.000903; beta 3.65; @@ -3372,7 +3372,7 @@ reactions } un-named-reaction-211 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH3 + C2H4 = C3H7"; k0 { @@ -3440,7 +3440,7 @@ reactions } un-named-reaction-212 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C3H7 = C2H5 + CH2O"; A 9.64e+10; beta 0; @@ -3448,7 +3448,7 @@ reactions } un-named-reaction-213 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C3H7 = C3H8"; k0 { @@ -3516,7 +3516,7 @@ reactions } un-named-reaction-214 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C3H7 = CH3 + C2H5"; A 4060; beta 2.19; @@ -3524,7 +3524,7 @@ reactions } un-named-reaction-215 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C3H7 = C2H5 + CH2OH"; A 2.41e+10; beta 0; @@ -3532,7 +3532,7 @@ reactions } un-named-reaction-216 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + C3H7 = O2 + C3H8"; A 25500000; beta 0.255; @@ -3540,7 +3540,7 @@ reactions } un-named-reaction-217 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "HO2 + C3H7 = OH + C2H5 + CH2O"; A 2.41e+10; beta 0; @@ -3548,7 +3548,7 @@ reactions } un-named-reaction-218 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + C3H7 = 2C2H5"; A 1.927e+10; beta -0.32; diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/reactionsGRI b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/reactionsGRI index 05b9faa7d0..4095af4cca 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/reactionsGRI +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/constant/reactionsGRI @@ -2,7 +2,7 @@ reactions { un-named-reaction-0 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "2O = O2"; A 1.2e+11; beta -1; @@ -51,7 +51,7 @@ reactions } un-named-reaction-1 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "O + H = OH"; A 5e+11; beta -1; @@ -100,7 +100,7 @@ reactions } un-named-reaction-2 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + H2 = H + OH"; A 38.7; beta 2.7; @@ -108,7 +108,7 @@ reactions } un-named-reaction-3 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + HO2 = OH + O2"; A 2e+10; beta 0; @@ -116,7 +116,7 @@ reactions } un-named-reaction-4 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + H2O2 = OH + HO2"; A 9630; beta 2; @@ -124,7 +124,7 @@ reactions } un-named-reaction-5 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH = H + CO"; A 5.7e+10; beta 0; @@ -132,7 +132,7 @@ reactions } un-named-reaction-6 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2 = H + HCO"; A 8e+10; beta 0; @@ -140,7 +140,7 @@ reactions } un-named-reaction-7 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2(S) = H2 + CO"; A 1.5e+10; beta 0; @@ -148,7 +148,7 @@ reactions } un-named-reaction-8 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2(S) = H + HCO"; A 1.5e+10; beta 0; @@ -156,7 +156,7 @@ reactions } un-named-reaction-9 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3 = H + CH2O"; A 5.06e+10; beta 0; @@ -164,7 +164,7 @@ reactions } un-named-reaction-10 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH4 = OH + CH3"; A 1020000; beta 1.5; @@ -172,7 +172,7 @@ reactions } un-named-reaction-11 { - type reversibleArrheniusLindemannFallOffReaction; + type reversibleArrheniusLindemannFallOff; reaction "O + CO = CO2"; k0 { @@ -236,7 +236,7 @@ reactions } un-named-reaction-12 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + HCO = OH + CO"; A 3e+10; beta 0; @@ -244,7 +244,7 @@ reactions } un-named-reaction-13 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + HCO = H + CO2"; A 3e+10; beta 0; @@ -252,7 +252,7 @@ reactions } un-named-reaction-14 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2O = OH + HCO"; A 3.9e+10; beta 0; @@ -260,7 +260,7 @@ reactions } un-named-reaction-15 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2OH = OH + CH2O"; A 1e+10; beta 0; @@ -268,7 +268,7 @@ reactions } un-named-reaction-16 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3O = OH + CH2O"; A 1e+10; beta 0; @@ -276,7 +276,7 @@ reactions } un-named-reaction-17 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3OH = OH + CH2OH"; A 388; beta 2.5; @@ -284,7 +284,7 @@ reactions } un-named-reaction-18 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3OH = OH + CH3O"; A 130; beta 2.5; @@ -292,7 +292,7 @@ reactions } un-named-reaction-19 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H = CH + CO"; A 5e+10; beta 0; @@ -300,7 +300,7 @@ reactions } un-named-reaction-20 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H2 = H + HCCO"; A 13500; beta 2; @@ -308,7 +308,7 @@ reactions } un-named-reaction-21 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H2 = OH + C2H"; A 4.6e+16; beta -1.41; @@ -316,7 +316,7 @@ reactions } un-named-reaction-22 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H2 = CO + CH2"; A 6940; beta 2; @@ -324,7 +324,7 @@ reactions } un-named-reaction-23 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H3 = H + CH2CO"; A 3e+10; beta 0; @@ -332,7 +332,7 @@ reactions } un-named-reaction-24 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H4 = CH3 + HCO"; A 12500; beta 1.83; @@ -340,7 +340,7 @@ reactions } un-named-reaction-25 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H5 = CH3 + CH2O"; A 2.24e+10; beta 0; @@ -348,7 +348,7 @@ reactions } un-named-reaction-26 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H6 = OH + C2H5"; A 89800; beta 1.92; @@ -356,7 +356,7 @@ reactions } un-named-reaction-27 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + HCCO = H + 2CO"; A 1e+11; beta 0; @@ -364,7 +364,7 @@ reactions } un-named-reaction-28 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2CO = OH + HCCO"; A 1e+10; beta 0; @@ -372,7 +372,7 @@ reactions } un-named-reaction-29 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2CO = CH2 + CO2"; A 1750000000; beta 0; @@ -380,7 +380,7 @@ reactions } un-named-reaction-30 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O2 + CO = O + CO2"; A 2500000000; beta 0; @@ -388,7 +388,7 @@ reactions } un-named-reaction-31 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O2 + CH2O = HO2 + HCO"; A 1e+11; beta 0; @@ -396,7 +396,7 @@ reactions } un-named-reaction-32 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "H + O2 = HO2"; A 2.8e+12; beta -0.86; @@ -445,7 +445,7 @@ reactions } un-named-reaction-33 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + 2O2 = HO2 + O2"; A 2.08e+13; beta -1.24; @@ -453,7 +453,7 @@ reactions } un-named-reaction-34 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + O2 + H2O = HO2 + H2O"; A 1.126e+13; beta -0.76; @@ -461,7 +461,7 @@ reactions } un-named-reaction-35 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + O2 + N2 = HO2 + N2"; A 2.6e+13; beta -1.24; @@ -469,7 +469,7 @@ reactions } un-named-reaction-36 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + O2 + AR = HO2 + AR"; A 7e+11; beta -0.8; @@ -477,7 +477,7 @@ reactions } un-named-reaction-37 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + O2 = O + OH"; A 2.65e+13; beta -0.6707; @@ -485,7 +485,7 @@ reactions } un-named-reaction-38 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "2H = H2"; A 1e+12; beta -1; @@ -534,7 +534,7 @@ reactions } un-named-reaction-39 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2H + H2 = 2H2"; A 9e+10; beta -0.6; @@ -542,7 +542,7 @@ reactions } un-named-reaction-40 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2H + H2O = H2 + H2O"; A 6e+13; beta -1.25; @@ -550,7 +550,7 @@ reactions } un-named-reaction-41 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2H + CO2 = H2 + CO2"; A 5.5e+14; beta -2; @@ -558,7 +558,7 @@ reactions } un-named-reaction-42 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "H + OH = H2O"; A 2.2e+16; beta -2; @@ -607,7 +607,7 @@ reactions } un-named-reaction-43 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HO2 = O + H2O"; A 3970000000; beta 0; @@ -615,7 +615,7 @@ reactions } un-named-reaction-44 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HO2 = O2 + H2"; A 4.48e+10; beta 0; @@ -623,7 +623,7 @@ reactions } un-named-reaction-45 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HO2 = 2OH"; A 8.4e+10; beta 0; @@ -631,7 +631,7 @@ reactions } un-named-reaction-46 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + H2O2 = HO2 + H2"; A 12100; beta 2; @@ -639,7 +639,7 @@ reactions } un-named-reaction-47 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + H2O2 = OH + H2O"; A 1e+10; beta 0; @@ -647,7 +647,7 @@ reactions } un-named-reaction-48 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH = C + H2"; A 1.65e+11; beta 0; @@ -655,7 +655,7 @@ reactions } un-named-reaction-49 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2 = CH3"; k0 { @@ -723,7 +723,7 @@ reactions } un-named-reaction-50 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2(S) = CH + H2"; A 3e+10; beta 0; @@ -731,7 +731,7 @@ reactions } un-named-reaction-51 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH3 = CH4"; k0 { @@ -799,7 +799,7 @@ reactions } un-named-reaction-52 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH4 = CH3 + H2"; A 660000; beta 1.62; @@ -807,7 +807,7 @@ reactions } un-named-reaction-53 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + HCO = CH2O"; k0 { @@ -875,7 +875,7 @@ reactions } un-named-reaction-54 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HCO = H2 + CO"; A 7.34e+10; beta 0; @@ -883,7 +883,7 @@ reactions } un-named-reaction-55 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2O = CH2OH"; k0 { @@ -951,7 +951,7 @@ reactions } un-named-reaction-56 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2O = CH3O"; k0 { @@ -1019,7 +1019,7 @@ reactions } un-named-reaction-57 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2O = HCO + H2"; A 57400; beta 1.9; @@ -1027,7 +1027,7 @@ reactions } un-named-reaction-58 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2OH = CH3OH"; k0 { @@ -1095,7 +1095,7 @@ reactions } un-named-reaction-59 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2OH = H2 + CH2O"; A 2e+10; beta 0; @@ -1103,7 +1103,7 @@ reactions } un-named-reaction-60 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2OH = OH + CH3"; A 165000000; beta 0.65; @@ -1111,7 +1111,7 @@ reactions } un-named-reaction-61 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2OH = CH2(S) + H2O"; A 3.28e+10; beta -0.09; @@ -1119,7 +1119,7 @@ reactions } un-named-reaction-62 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH3O = CH3OH"; k0 { @@ -1187,7 +1187,7 @@ reactions } un-named-reaction-63 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3O = H + CH2OH"; A 41500; beta 1.63; @@ -1195,7 +1195,7 @@ reactions } un-named-reaction-64 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3O = H2 + CH2O"; A 2e+10; beta 0; @@ -1203,7 +1203,7 @@ reactions } un-named-reaction-65 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3O = OH + CH3"; A 1500000000; beta 0.5; @@ -1211,7 +1211,7 @@ reactions } un-named-reaction-66 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3O = CH2(S) + H2O"; A 2.62e+11; beta -0.23; @@ -1219,7 +1219,7 @@ reactions } un-named-reaction-67 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3OH = CH2OH + H2"; A 17000; beta 2.1; @@ -1227,7 +1227,7 @@ reactions } un-named-reaction-68 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3OH = CH3O + H2"; A 4200; beta 2.1; @@ -1235,7 +1235,7 @@ reactions } un-named-reaction-69 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H = C2H2"; k0 { @@ -1303,7 +1303,7 @@ reactions } un-named-reaction-70 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H2 = C2H3"; k0 { @@ -1371,7 +1371,7 @@ reactions } un-named-reaction-71 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H3 = C2H4"; k0 { @@ -1439,7 +1439,7 @@ reactions } un-named-reaction-72 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C2H3 = H2 + C2H2"; A 3e+10; beta 0; @@ -1447,7 +1447,7 @@ reactions } un-named-reaction-73 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H4 = C2H5"; k0 { @@ -1515,7 +1515,7 @@ reactions } un-named-reaction-74 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C2H4 = C2H3 + H2"; A 1325; beta 2.53; @@ -1523,7 +1523,7 @@ reactions } un-named-reaction-75 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H5 = C2H6"; k0 { @@ -1591,7 +1591,7 @@ reactions } un-named-reaction-76 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C2H5 = H2 + C2H4"; A 2000000000; beta 0; @@ -1599,7 +1599,7 @@ reactions } un-named-reaction-77 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C2H6 = C2H5 + H2"; A 115000; beta 1.9; @@ -1607,7 +1607,7 @@ reactions } un-named-reaction-78 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HCCO = CH2(S) + CO"; A 1e+11; beta 0; @@ -1615,7 +1615,7 @@ reactions } un-named-reaction-79 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2CO = HCCO + H2"; A 5e+10; beta 0; @@ -1623,7 +1623,7 @@ reactions } un-named-reaction-80 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2CO = CH3 + CO"; A 1.13e+10; beta 0; @@ -1631,7 +1631,7 @@ reactions } un-named-reaction-81 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HCCOH = H + CH2CO"; A 1e+10; beta 0; @@ -1639,7 +1639,7 @@ reactions } un-named-reaction-82 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H2 + CO = CH2O"; k0 { @@ -1707,7 +1707,7 @@ reactions } un-named-reaction-83 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + H2 = H + H2O"; A 216000; beta 1.51; @@ -1715,7 +1715,7 @@ reactions } un-named-reaction-84 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "2OH = H2O2"; k0 { @@ -1783,7 +1783,7 @@ reactions } un-named-reaction-85 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2OH = O + H2O"; A 35.7; beta 2.4; @@ -1791,7 +1791,7 @@ reactions } un-named-reaction-86 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + HO2 = O2 + H2O"; A 1.45e+10; beta 0; @@ -1799,7 +1799,7 @@ reactions } un-named-reaction-87 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + H2O2 = HO2 + H2O"; A 2000000000; beta 0; @@ -1807,7 +1807,7 @@ reactions } un-named-reaction-88 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + H2O2 = HO2 + H2O"; A 1.7e+15; beta 0; @@ -1815,7 +1815,7 @@ reactions } un-named-reaction-89 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C = H + CO"; A 5e+10; beta 0; @@ -1823,7 +1823,7 @@ reactions } un-named-reaction-90 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH = H + HCO"; A 3e+10; beta 0; @@ -1831,7 +1831,7 @@ reactions } un-named-reaction-91 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2 = H + CH2O"; A 2e+10; beta 0; @@ -1839,7 +1839,7 @@ reactions } un-named-reaction-92 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2 = CH + H2O"; A 11300; beta 2; @@ -1847,7 +1847,7 @@ reactions } un-named-reaction-93 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2(S) = H + CH2O"; A 3e+10; beta 0; @@ -1855,7 +1855,7 @@ reactions } un-named-reaction-94 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "OH + CH3 = CH3OH"; k0 { @@ -1923,7 +1923,7 @@ reactions } un-named-reaction-95 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3 = CH2 + H2O"; A 56000; beta 1.6; @@ -1931,7 +1931,7 @@ reactions } un-named-reaction-96 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3 = CH2(S) + H2O"; A 6.44e+14; beta -1.34; @@ -1939,7 +1939,7 @@ reactions } un-named-reaction-97 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH4 = CH3 + H2O"; A 100000; beta 1.6; @@ -1947,7 +1947,7 @@ reactions } un-named-reaction-98 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CO = H + CO2"; A 47600; beta 1.228; @@ -1955,7 +1955,7 @@ reactions } un-named-reaction-99 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + HCO = H2O + CO"; A 5e+10; beta 0; @@ -1963,7 +1963,7 @@ reactions } un-named-reaction-100 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2O = HCO + H2O"; A 3430000; beta 1.18; @@ -1971,7 +1971,7 @@ reactions } un-named-reaction-101 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2OH = H2O + CH2O"; A 5000000000; beta 0; @@ -1979,7 +1979,7 @@ reactions } un-named-reaction-102 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3O = H2O + CH2O"; A 5000000000; beta 0; @@ -1987,7 +1987,7 @@ reactions } un-named-reaction-103 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3OH = CH2OH + H2O"; A 1440; beta 2; @@ -1995,7 +1995,7 @@ reactions } un-named-reaction-104 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3OH = CH3O + H2O"; A 6300; beta 2; @@ -2003,7 +2003,7 @@ reactions } un-named-reaction-105 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H = H + HCCO"; A 2e+10; beta 0; @@ -2011,7 +2011,7 @@ reactions } un-named-reaction-106 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H2 = H + CH2CO"; A 2.18e-07; beta 4.5; @@ -2019,7 +2019,7 @@ reactions } un-named-reaction-107 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H2 = H + HCCOH"; A 504; beta 2.3; @@ -2027,7 +2027,7 @@ reactions } un-named-reaction-108 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H2 = C2H + H2O"; A 33700; beta 2; @@ -2035,7 +2035,7 @@ reactions } un-named-reaction-109 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H2 = CH3 + CO"; A 4.83e-07; beta 4; @@ -2043,7 +2043,7 @@ reactions } un-named-reaction-110 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H3 = H2O + C2H2"; A 5000000000; beta 0; @@ -2051,7 +2051,7 @@ reactions } un-named-reaction-111 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H4 = C2H3 + H2O"; A 3600; beta 2; @@ -2059,7 +2059,7 @@ reactions } un-named-reaction-112 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H6 = C2H5 + H2O"; A 3540; beta 2.12; @@ -2067,7 +2067,7 @@ reactions } un-named-reaction-113 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2CO = HCCO + H2O"; A 7500000000; beta 0; @@ -2075,7 +2075,7 @@ reactions } un-named-reaction-114 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2HO2 = O2 + H2O2"; A 130000000; beta 0; @@ -2083,7 +2083,7 @@ reactions } un-named-reaction-115 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2HO2 = O2 + H2O2"; A 4.2e+11; beta 0; @@ -2091,7 +2091,7 @@ reactions } un-named-reaction-116 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CH2 = OH + CH2O"; A 2e+10; beta 0; @@ -2099,7 +2099,7 @@ reactions } un-named-reaction-117 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CH3 = O2 + CH4"; A 1000000000; beta 0; @@ -2107,7 +2107,7 @@ reactions } un-named-reaction-118 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CH3 = OH + CH3O"; A 3.78e+10; beta 0; @@ -2115,7 +2115,7 @@ reactions } un-named-reaction-119 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CO = OH + CO2"; A 1.5e+11; beta 0; @@ -2123,7 +2123,7 @@ reactions } un-named-reaction-120 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CH2O = HCO + H2O2"; A 5600; beta 2; @@ -2131,7 +2131,7 @@ reactions } un-named-reaction-121 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C + O2 = O + CO"; A 5.8e+10; beta 0; @@ -2139,7 +2139,7 @@ reactions } un-named-reaction-122 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C + CH2 = H + C2H"; A 5e+10; beta 0; @@ -2147,7 +2147,7 @@ reactions } un-named-reaction-123 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C + CH3 = H + C2H2"; A 5e+10; beta 0; @@ -2155,7 +2155,7 @@ reactions } un-named-reaction-124 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + O2 = O + HCO"; A 6.71e+10; beta 0; @@ -2163,7 +2163,7 @@ reactions } un-named-reaction-125 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + H2 = H + CH2"; A 1.08e+11; beta 0; @@ -2171,7 +2171,7 @@ reactions } un-named-reaction-126 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + H2O = H + CH2O"; A 5710000000; beta 0; @@ -2179,7 +2179,7 @@ reactions } un-named-reaction-127 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CH2 = H + C2H2"; A 4e+10; beta 0; @@ -2187,7 +2187,7 @@ reactions } un-named-reaction-128 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CH3 = H + C2H3"; A 3e+10; beta 0; @@ -2195,7 +2195,7 @@ reactions } un-named-reaction-129 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CH4 = H + C2H4"; A 6e+10; beta 0; @@ -2203,7 +2203,7 @@ reactions } un-named-reaction-130 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH + CO = HCCO"; k0 { @@ -2271,7 +2271,7 @@ reactions } un-named-reaction-131 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CO2 = HCO + CO"; A 1.9e+11; beta 0; @@ -2279,7 +2279,7 @@ reactions } un-named-reaction-132 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CH2O = H + CH2CO"; A 9.46e+10; beta 0; @@ -2287,7 +2287,7 @@ reactions } un-named-reaction-133 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + HCCO = CO + C2H2"; A 5e+10; beta 0; @@ -2295,7 +2295,7 @@ reactions } un-named-reaction-134 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH2 + O2 = OH + H + CO"; A 5000000000; beta 0; @@ -2303,7 +2303,7 @@ reactions } un-named-reaction-135 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + H2 = H + CH3"; A 500; beta 2; @@ -2311,7 +2311,7 @@ reactions } un-named-reaction-136 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2CH2 = H2 + C2H2"; A 1.6e+12; beta 0; @@ -2319,7 +2319,7 @@ reactions } un-named-reaction-137 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + CH3 = H + C2H4"; A 4e+10; beta 0; @@ -2327,7 +2327,7 @@ reactions } un-named-reaction-138 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + CH4 = 2CH3"; A 2460; beta 2; @@ -2335,7 +2335,7 @@ reactions } un-named-reaction-139 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH2 + CO = CH2CO"; k0 { @@ -2403,7 +2403,7 @@ reactions } un-named-reaction-140 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + HCCO = C2H3 + CO"; A 3e+10; beta 0; @@ -2411,7 +2411,7 @@ reactions } un-named-reaction-141 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + N2 = CH2 + N2"; A 1.5e+10; beta 0; @@ -2419,7 +2419,7 @@ reactions } un-named-reaction-142 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + AR = CH2 + AR"; A 9000000000; beta 0; @@ -2427,7 +2427,7 @@ reactions } un-named-reaction-143 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + O2 = H + OH + CO"; A 2.8e+10; beta 0; @@ -2435,7 +2435,7 @@ reactions } un-named-reaction-144 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + O2 = CO + H2O"; A 1.2e+10; beta 0; @@ -2443,7 +2443,7 @@ reactions } un-named-reaction-145 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + H2 = CH3 + H"; A 7e+10; beta 0; @@ -2451,7 +2451,7 @@ reactions } un-named-reaction-146 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH2(S) + H2O = CH3OH"; k0 { @@ -2519,7 +2519,7 @@ reactions } un-named-reaction-147 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + H2O = CH2 + H2O"; A 3e+10; beta 0; @@ -2527,7 +2527,7 @@ reactions } un-named-reaction-148 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CH3 = H + C2H4"; A 1.2e+10; beta 0; @@ -2535,7 +2535,7 @@ reactions } un-named-reaction-149 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CH4 = 2CH3"; A 1.6e+10; beta 0; @@ -2543,7 +2543,7 @@ reactions } un-named-reaction-150 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CO = CH2 + CO"; A 9000000000; beta 0; @@ -2551,7 +2551,7 @@ reactions } un-named-reaction-151 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CO2 = CH2 + CO2"; A 7000000000; beta 0; @@ -2559,7 +2559,7 @@ reactions } un-named-reaction-152 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CO2 = CO + CH2O"; A 1.4e+10; beta 0; @@ -2567,7 +2567,7 @@ reactions } un-named-reaction-153 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + C2H6 = CH3 + C2H5"; A 4e+10; beta 0; @@ -2575,7 +2575,7 @@ reactions } un-named-reaction-154 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + O2 = O + CH3O"; A 3.56e+10; beta 0; @@ -2583,7 +2583,7 @@ reactions } un-named-reaction-155 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + O2 = OH + CH2O"; A 2310000000; beta 0; @@ -2591,7 +2591,7 @@ reactions } un-named-reaction-156 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + H2O2 = HO2 + CH4"; A 24.5; beta 2.47; @@ -2599,7 +2599,7 @@ reactions } un-named-reaction-157 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "2CH3 = C2H6"; k0 { @@ -2667,7 +2667,7 @@ reactions } un-named-reaction-158 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2CH3 = H + C2H5"; A 6840000000; beta 0.1; @@ -2675,7 +2675,7 @@ reactions } un-named-reaction-159 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + HCO = CH4 + CO"; A 2.648e+10; beta 0; @@ -2683,7 +2683,7 @@ reactions } un-named-reaction-160 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + CH2O = HCO + CH4"; A 3.32; beta 2.81; @@ -2691,7 +2691,7 @@ reactions } un-named-reaction-161 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + CH3OH = CH2OH + CH4"; A 30000; beta 1.5; @@ -2699,7 +2699,7 @@ reactions } un-named-reaction-162 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + CH3OH = CH3O + CH4"; A 10000; beta 1.5; @@ -2707,7 +2707,7 @@ reactions } un-named-reaction-163 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + C2H4 = C2H3 + CH4"; A 227; beta 2; @@ -2715,7 +2715,7 @@ reactions } un-named-reaction-164 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + C2H6 = C2H5 + CH4"; A 6140; beta 1.74; @@ -2723,7 +2723,7 @@ reactions } un-named-reaction-165 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCO + H2O = H + CO + H2O"; A 1.5e+15; beta -1; @@ -2731,7 +2731,7 @@ reactions } un-named-reaction-166 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "HCO = H + CO"; A 1.87e+14; beta -1; @@ -2780,7 +2780,7 @@ reactions } un-named-reaction-167 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCO + O2 = HO2 + CO"; A 1.345e+10; beta 0; @@ -2788,7 +2788,7 @@ reactions } un-named-reaction-168 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2OH + O2 = HO2 + CH2O"; A 1.8e+10; beta 0; @@ -2796,7 +2796,7 @@ reactions } un-named-reaction-169 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3O + O2 = HO2 + CH2O"; A 4.28e-16; beta 7.6; @@ -2804,7 +2804,7 @@ reactions } un-named-reaction-170 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H + O2 = HCO + CO"; A 1e+10; beta 0; @@ -2812,7 +2812,7 @@ reactions } un-named-reaction-171 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H + H2 = H + C2H2"; A 56800000; beta 0.9; @@ -2820,7 +2820,7 @@ reactions } un-named-reaction-172 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H3 + O2 = HCO + CH2O"; A 4.58e+13; beta -1.39; @@ -2828,7 +2828,7 @@ reactions } un-named-reaction-173 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "C2H4 = H2 + C2H2"; k0 { @@ -2896,7 +2896,7 @@ reactions } un-named-reaction-174 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H5 + O2 = HO2 + C2H4"; A 840000000; beta 0; @@ -2904,7 +2904,7 @@ reactions } un-named-reaction-175 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCCO + O2 = OH + 2CO"; A 3200000000; beta 0; @@ -2912,7 +2912,7 @@ reactions } un-named-reaction-176 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2HCCO = 2CO + C2H2"; A 1e+10; beta 0; @@ -2920,7 +2920,7 @@ reactions } un-named-reaction-177 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O + CH3 = H + H2 + CO"; A 3.37e+10; beta 0; @@ -2928,7 +2928,7 @@ reactions } un-named-reaction-178 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H4 = H + CH2CHO"; A 6700; beta 1.83; @@ -2936,7 +2936,7 @@ reactions } un-named-reaction-179 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H5 = H + CH3CHO"; A 1.096e+11; beta 0; @@ -2944,7 +2944,7 @@ reactions } un-named-reaction-180 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + HO2 = O2 + H2O"; A 5e+12; beta 0; @@ -2952,7 +2952,7 @@ reactions } un-named-reaction-181 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "OH + CH3 = H2 + CH2O"; A 8000000; beta 0.5; @@ -2960,7 +2960,7 @@ reactions } un-named-reaction-182 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH + H2 = CH3"; k0 { @@ -3028,7 +3028,7 @@ reactions } un-named-reaction-183 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH2 + O2 = 2H + CO2"; A 5800000000; beta 0; @@ -3036,7 +3036,7 @@ reactions } un-named-reaction-184 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + O2 = O + CH2O"; A 2400000000; beta 0; @@ -3044,7 +3044,7 @@ reactions } un-named-reaction-185 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH2 + CH2 = 2H + C2H2"; A 2e+11; beta 0; @@ -3052,7 +3052,7 @@ reactions } un-named-reaction-186 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH2(S) + H2O = H2 + CH2O"; A 68200000; beta 0.25; @@ -3060,7 +3060,7 @@ reactions } un-named-reaction-187 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H3 + O2 = O + CH2CHO"; A 303000000; beta 0.29; @@ -3068,7 +3068,7 @@ reactions } un-named-reaction-188 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H3 + O2 = HO2 + C2H2"; A 1337; beta 1.61; @@ -3076,7 +3076,7 @@ reactions } un-named-reaction-189 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3CHO = OH + CH2CHO"; A 2920000000; beta 0; @@ -3084,7 +3084,7 @@ reactions } un-named-reaction-190 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O + CH3CHO = OH + CH3 + CO"; A 2920000000; beta 0; @@ -3092,7 +3092,7 @@ reactions } un-named-reaction-191 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O2 + CH3CHO = HO2 + CH3 + CO"; A 3.01e+10; beta 0; @@ -3100,7 +3100,7 @@ reactions } un-named-reaction-192 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3CHO = CH2CHO + H2"; A 2050000; beta 1.16; @@ -3108,7 +3108,7 @@ reactions } un-named-reaction-193 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "H + CH3CHO = CH3 + H2 + CO"; A 2050000; beta 1.16; @@ -3116,7 +3116,7 @@ reactions } un-named-reaction-194 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "OH + CH3CHO = CH3 + H2O + CO"; A 23430000; beta 0.73; @@ -3124,7 +3124,7 @@ reactions } un-named-reaction-195 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "HO2 + CH3CHO = CH3 + H2O2 + CO"; A 3010000000; beta 0; @@ -3132,7 +3132,7 @@ reactions } un-named-reaction-196 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH3 + CH3CHO = CH3 + CH4 + CO"; A 2720; beta 1.77; @@ -3140,7 +3140,7 @@ reactions } un-named-reaction-197 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2CO = CH2CHO"; k0 { @@ -3208,7 +3208,7 @@ reactions } un-named-reaction-198 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O + CH2CHO = H + CH2 + CO2"; A 1.5e+11; beta 0; @@ -3216,7 +3216,7 @@ reactions } un-named-reaction-199 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O2 + CH2CHO = OH + CO + CH2O"; A 18100000; beta 0; @@ -3224,7 +3224,7 @@ reactions } un-named-reaction-200 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O2 + CH2CHO = OH + 2HCO"; A 23500000; beta 0; @@ -3232,7 +3232,7 @@ reactions } un-named-reaction-201 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2CHO = CH3 + HCO"; A 2.2e+10; beta 0; @@ -3240,7 +3240,7 @@ reactions } un-named-reaction-202 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2CHO = CH2CO + H2"; A 1.1e+10; beta 0; @@ -3248,7 +3248,7 @@ reactions } un-named-reaction-203 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2CHO = H2O + CH2CO"; A 1.2e+10; beta 0; @@ -3256,7 +3256,7 @@ reactions } un-named-reaction-204 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2CHO = HCO + CH2OH"; A 3.01e+10; beta 0; @@ -3264,7 +3264,7 @@ reactions } un-named-reaction-205 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH3 + C2H5 = C3H8"; k0 { @@ -3332,7 +3332,7 @@ reactions } un-named-reaction-206 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C3H8 = OH + C3H7"; A 193; beta 2.68; @@ -3340,7 +3340,7 @@ reactions } un-named-reaction-207 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C3H8 = C3H7 + H2"; A 1320; beta 2.54; @@ -3348,7 +3348,7 @@ reactions } un-named-reaction-208 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C3H8 = C3H7 + H2O"; A 31600; beta 1.8; @@ -3356,7 +3356,7 @@ reactions } un-named-reaction-209 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C3H7 + H2O2 = HO2 + C3H8"; A 0.378; beta 2.72; @@ -3364,7 +3364,7 @@ reactions } un-named-reaction-210 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + C3H8 = C3H7 + CH4"; A 0.000903; beta 3.65; @@ -3372,7 +3372,7 @@ reactions } un-named-reaction-211 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH3 + C2H4 = C3H7"; k0 { @@ -3440,7 +3440,7 @@ reactions } un-named-reaction-212 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C3H7 = C2H5 + CH2O"; A 9.64e+10; beta 0; @@ -3448,7 +3448,7 @@ reactions } un-named-reaction-213 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C3H7 = C3H8"; k0 { @@ -3516,7 +3516,7 @@ reactions } un-named-reaction-214 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C3H7 = CH3 + C2H5"; A 4060; beta 2.19; @@ -3524,7 +3524,7 @@ reactions } un-named-reaction-215 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C3H7 = C2H5 + CH2OH"; A 2.41e+10; beta 0; @@ -3532,7 +3532,7 @@ reactions } un-named-reaction-216 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + C3H7 = O2 + C3H8"; A 25500000; beta 0.255; @@ -3540,7 +3540,7 @@ reactions } un-named-reaction-217 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "HO2 + C3H7 = OH + C2H5 + CH2O"; A 2.41e+10; beta 0; @@ -3548,7 +3548,7 @@ reactions } un-named-reaction-218 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + C3H7 = 2C2H5"; A 1.927e+10; beta -0.32; diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/reactions b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/reactions index e7aff50ae8..028a2a8510 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/reactions +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/constant/reactions @@ -20,7 +20,7 @@ reactions { methaneReaction { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH4 + 2O2 = CO2 + 2H2O"; A 5.2e16; beta 0; diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/reactions b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/reactions index e7aff50ae8..028a2a8510 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/reactions +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/constant/reactions @@ -20,7 +20,7 @@ reactions { methaneReaction { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH4 + 2O2 = CO2 + 2H2O"; A 5.2e16; beta 0; diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/reactionsGRI b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/reactionsGRI index 31fbdbdf83..2091ce56af 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/reactionsGRI +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/constant/reactionsGRI @@ -2,7 +2,7 @@ reactions { un-named-reaction-0 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + H2 = H + OH"; A 38.7; beta 2.7; @@ -10,7 +10,7 @@ reactions } un-named-reaction-1 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + HO2 = OH + O2"; A 2e+10; beta 0; @@ -18,7 +18,7 @@ reactions } un-named-reaction-2 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + H2O2 = OH + HO2"; A 9630; beta 2; @@ -26,7 +26,7 @@ reactions } un-named-reaction-3 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH = H + CO"; A 5.7e+10; beta 0; @@ -34,7 +34,7 @@ reactions } un-named-reaction-4 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2 = H + HCO"; A 8e+10; beta 0; @@ -42,7 +42,7 @@ reactions } un-named-reaction-5 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2(S) = H2 + CO"; A 1.5e+10; beta 0; @@ -50,7 +50,7 @@ reactions } un-named-reaction-6 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2(S) = H + HCO"; A 1.5e+10; beta 0; @@ -58,7 +58,7 @@ reactions } un-named-reaction-7 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3 = H + CH2O"; A 5.06e+10; beta 0; @@ -66,7 +66,7 @@ reactions } un-named-reaction-8 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH4 = OH + CH3"; A 1.02e+06; beta 1.5; @@ -74,7 +74,7 @@ reactions } un-named-reaction-9 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + HCO = OH + CO"; A 3e+10; beta 0; @@ -82,7 +82,7 @@ reactions } un-named-reaction-10 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + HCO = H + CO2"; A 3e+10; beta 0; @@ -90,7 +90,7 @@ reactions } un-named-reaction-11 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2O = OH + HCO"; A 3.9e+10; beta 0; @@ -98,7 +98,7 @@ reactions } un-named-reaction-12 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2OH = OH + CH2O"; A 1e+10; beta 0; @@ -106,7 +106,7 @@ reactions } un-named-reaction-13 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3O = OH + CH2O"; A 1e+10; beta 0; @@ -114,7 +114,7 @@ reactions } un-named-reaction-14 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3OH = OH + CH2OH"; A 388; beta 2.5; @@ -122,7 +122,7 @@ reactions } un-named-reaction-15 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3OH = OH + CH3O"; A 130; beta 2.5; @@ -130,7 +130,7 @@ reactions } un-named-reaction-16 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H = CH + CO"; A 5e+10; beta 0; @@ -138,7 +138,7 @@ reactions } un-named-reaction-17 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H2 = H + HCCO"; A 13500; beta 2; @@ -146,7 +146,7 @@ reactions } un-named-reaction-18 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H2 = OH + C2H"; A 4.6e+16; beta -1.41; @@ -154,7 +154,7 @@ reactions } un-named-reaction-19 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H2 = CO + CH2"; A 6940; beta 2; @@ -162,7 +162,7 @@ reactions } un-named-reaction-20 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H3 = H + CH2CO"; A 3e+10; beta 0; @@ -170,7 +170,7 @@ reactions } un-named-reaction-21 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H4 = CH3 + HCO"; A 12500; beta 1.83; @@ -178,7 +178,7 @@ reactions } un-named-reaction-22 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H5 = CH3 + CH2O"; A 2.24e+10; beta 0; @@ -186,7 +186,7 @@ reactions } un-named-reaction-23 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H6 = OH + C2H5"; A 89800; beta 1.92; @@ -194,7 +194,7 @@ reactions } un-named-reaction-24 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + HCCO = H + 2CO"; A 1e+11; beta 0; @@ -202,7 +202,7 @@ reactions } un-named-reaction-25 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2CO = OH + HCCO"; A 1e+10; beta 0; @@ -210,7 +210,7 @@ reactions } un-named-reaction-26 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2CO = CH2 + CO2"; A 1.75e+09; beta 0; @@ -218,7 +218,7 @@ reactions } un-named-reaction-27 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O2 + CO = O + CO2"; A 2.5e+09; beta 0; @@ -226,7 +226,7 @@ reactions } un-named-reaction-28 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O2 + CH2O = HO2 + HCO"; A 1e+11; beta 0; @@ -234,7 +234,7 @@ reactions } un-named-reaction-29 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + 2O2 = HO2 + O2"; A 2.08e+13; beta -1.24; @@ -242,7 +242,7 @@ reactions } un-named-reaction-30 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + O2 + H2O = HO2 + H2O"; A 1.126e+13; beta -0.76; @@ -250,7 +250,7 @@ reactions } un-named-reaction-31 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + O2 + N2 = HO2 + N2"; A 2.6e+13; beta -1.24; @@ -258,7 +258,7 @@ reactions } un-named-reaction-32 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + O2 + AR = HO2 + AR"; A 7e+11; beta -0.8; @@ -266,7 +266,7 @@ reactions } un-named-reaction-33 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + O2 = O + OH"; A 2.65e+13; beta -0.6707; @@ -274,7 +274,7 @@ reactions } un-named-reaction-34 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2H + H2 = 2H2"; A 9e+10; beta -0.6; @@ -282,7 +282,7 @@ reactions } un-named-reaction-35 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2H + H2O = H2 + H2O"; A 6e+13; beta -1.25; @@ -290,7 +290,7 @@ reactions } un-named-reaction-36 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2H + CO2 = H2 + CO2"; A 5.5e+14; beta -2; @@ -298,7 +298,7 @@ reactions } un-named-reaction-37 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HO2 = O + H2O"; A 3.97e+09; beta 0; @@ -306,7 +306,7 @@ reactions } un-named-reaction-38 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HO2 = O2 + H2"; A 4.48e+10; beta 0; @@ -314,7 +314,7 @@ reactions } un-named-reaction-39 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HO2 = 2OH"; A 8.4e+10; beta 0; @@ -322,7 +322,7 @@ reactions } un-named-reaction-40 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + H2O2 = HO2 + H2"; A 12100; beta 2; @@ -330,7 +330,7 @@ reactions } un-named-reaction-41 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + H2O2 = OH + H2O"; A 1e+10; beta 0; @@ -338,7 +338,7 @@ reactions } un-named-reaction-42 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH = C + H2"; A 1.65e+11; beta 0; @@ -346,7 +346,7 @@ reactions } un-named-reaction-43 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2(S) = CH + H2"; A 3e+10; beta 0; @@ -354,7 +354,7 @@ reactions } un-named-reaction-44 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH4 = CH3 + H2"; A 660000; beta 1.62; @@ -362,7 +362,7 @@ reactions } un-named-reaction-45 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HCO = H2 + CO"; A 7.34e+10; beta 0; @@ -370,7 +370,7 @@ reactions } un-named-reaction-46 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2O = HCO + H2"; A 57400; beta 1.9; @@ -378,7 +378,7 @@ reactions } un-named-reaction-47 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2OH = H2 + CH2O"; A 2e+10; beta 0; @@ -386,7 +386,7 @@ reactions } un-named-reaction-48 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2OH = OH + CH3"; A 1.65e+08; beta 0.65; @@ -394,7 +394,7 @@ reactions } un-named-reaction-49 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2OH = CH2(S) + H2O"; A 3.28e+10; beta -0.09; @@ -402,7 +402,7 @@ reactions } un-named-reaction-50 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3O = H + CH2OH"; A 41500; beta 1.63; @@ -410,7 +410,7 @@ reactions } un-named-reaction-51 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3O = H2 + CH2O"; A 2e+10; beta 0; @@ -418,7 +418,7 @@ reactions } un-named-reaction-52 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3O = OH + CH3"; A 1.5e+09; beta 0.5; @@ -426,7 +426,7 @@ reactions } un-named-reaction-53 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3O = CH2(S) + H2O"; A 2.62e+11; beta -0.23; @@ -434,7 +434,7 @@ reactions } un-named-reaction-54 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3OH = CH2OH + H2"; A 17000; beta 2.1; @@ -442,7 +442,7 @@ reactions } un-named-reaction-55 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3OH = CH3O + H2"; A 4200; beta 2.1; @@ -450,7 +450,7 @@ reactions } un-named-reaction-56 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C2H3 = H2 + C2H2"; A 3e+10; beta 0; @@ -458,7 +458,7 @@ reactions } un-named-reaction-57 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C2H4 = C2H3 + H2"; A 1325; beta 2.53; @@ -466,7 +466,7 @@ reactions } un-named-reaction-58 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C2H5 = H2 + C2H4"; A 2e+09; beta 0; @@ -474,7 +474,7 @@ reactions } un-named-reaction-59 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C2H6 = C2H5 + H2"; A 115000; beta 1.9; @@ -482,7 +482,7 @@ reactions } un-named-reaction-60 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HCCO = CH2(S) + CO"; A 1e+11; beta 0; @@ -490,7 +490,7 @@ reactions } un-named-reaction-61 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2CO = HCCO + H2"; A 5e+10; beta 0; @@ -498,7 +498,7 @@ reactions } un-named-reaction-62 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2CO = CH3 + CO"; A 1.13e+10; beta 0; @@ -506,7 +506,7 @@ reactions } un-named-reaction-63 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HCCOH = H + CH2CO"; A 1e+10; beta 0; @@ -514,7 +514,7 @@ reactions } un-named-reaction-64 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + H2 = H + H2O"; A 216000; beta 1.51; @@ -522,7 +522,7 @@ reactions } un-named-reaction-65 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2OH = O + H2O"; A 35.7; beta 2.4; @@ -530,7 +530,7 @@ reactions } un-named-reaction-66 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + HO2 = O2 + H2O"; A 1.45e+10; beta 0; @@ -538,7 +538,7 @@ reactions } un-named-reaction-67 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + H2O2 = HO2 + H2O"; A 2e+09; beta 0; @@ -546,7 +546,7 @@ reactions } un-named-reaction-68 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + H2O2 = HO2 + H2O"; A 1.7e+15; beta 0; @@ -554,7 +554,7 @@ reactions } un-named-reaction-69 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C = H + CO"; A 5e+10; beta 0; @@ -562,7 +562,7 @@ reactions } un-named-reaction-70 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH = H + HCO"; A 3e+10; beta 0; @@ -570,7 +570,7 @@ reactions } un-named-reaction-71 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2 = H + CH2O"; A 2e+10; beta 0; @@ -578,7 +578,7 @@ reactions } un-named-reaction-72 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2 = CH + H2O"; A 11300; beta 2; @@ -586,7 +586,7 @@ reactions } un-named-reaction-73 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2(S) = H + CH2O"; A 3e+10; beta 0; @@ -594,7 +594,7 @@ reactions } un-named-reaction-74 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3 = CH2 + H2O"; A 56000; beta 1.6; @@ -602,7 +602,7 @@ reactions } un-named-reaction-75 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3 = CH2(S) + H2O"; A 6.44e+14; beta -1.34; @@ -610,7 +610,7 @@ reactions } un-named-reaction-76 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH4 = CH3 + H2O"; A 100000; beta 1.6; @@ -618,7 +618,7 @@ reactions } un-named-reaction-77 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CO = H + CO2"; A 47600; beta 1.228; @@ -626,7 +626,7 @@ reactions } un-named-reaction-78 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + HCO = H2O + CO"; A 5e+10; beta 0; @@ -634,7 +634,7 @@ reactions } un-named-reaction-79 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2O = HCO + H2O"; A 3.43e+06; beta 1.18; @@ -642,7 +642,7 @@ reactions } un-named-reaction-80 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2OH = H2O + CH2O"; A 5e+09; beta 0; @@ -650,7 +650,7 @@ reactions } un-named-reaction-81 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3O = H2O + CH2O"; A 5e+09; beta 0; @@ -658,7 +658,7 @@ reactions } un-named-reaction-82 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3OH = CH2OH + H2O"; A 1440; beta 2; @@ -666,7 +666,7 @@ reactions } un-named-reaction-83 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3OH = CH3O + H2O"; A 6300; beta 2; @@ -674,7 +674,7 @@ reactions } un-named-reaction-84 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H = H + HCCO"; A 2e+10; beta 0; @@ -682,7 +682,7 @@ reactions } un-named-reaction-85 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H2 = H + CH2CO"; A 2.18e-07; beta 4.5; @@ -690,7 +690,7 @@ reactions } un-named-reaction-86 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H2 = H + HCCOH"; A 504; beta 2.3; @@ -698,7 +698,7 @@ reactions } un-named-reaction-87 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H2 = C2H + H2O"; A 33700; beta 2; @@ -706,7 +706,7 @@ reactions } un-named-reaction-88 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H2 = CH3 + CO"; A 4.83e-07; beta 4; @@ -714,7 +714,7 @@ reactions } un-named-reaction-89 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H3 = H2O + C2H2"; A 5e+09; beta 0; @@ -722,7 +722,7 @@ reactions } un-named-reaction-90 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H4 = C2H3 + H2O"; A 3600; beta 2; @@ -730,7 +730,7 @@ reactions } un-named-reaction-91 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H6 = C2H5 + H2O"; A 3540; beta 2.12; @@ -738,7 +738,7 @@ reactions } un-named-reaction-92 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2CO = HCCO + H2O"; A 7.5e+09; beta 0; @@ -746,7 +746,7 @@ reactions } un-named-reaction-93 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2HO2 = O2 + H2O2"; A 1.3e+08; beta 0; @@ -754,7 +754,7 @@ reactions } un-named-reaction-94 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2HO2 = O2 + H2O2"; A 4.2e+11; beta 0; @@ -762,7 +762,7 @@ reactions } un-named-reaction-95 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CH2 = OH + CH2O"; A 2e+10; beta 0; @@ -770,7 +770,7 @@ reactions } un-named-reaction-96 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CH3 = O2 + CH4"; A 1e+09; beta 0; @@ -778,7 +778,7 @@ reactions } un-named-reaction-97 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CH3 = OH + CH3O"; A 3.78e+10; beta 0; @@ -786,7 +786,7 @@ reactions } un-named-reaction-98 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CO = OH + CO2"; A 1.5e+11; beta 0; @@ -794,7 +794,7 @@ reactions } un-named-reaction-99 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CH2O = HCO + H2O2"; A 5600; beta 2; @@ -802,7 +802,7 @@ reactions } un-named-reaction-100 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C + O2 = O + CO"; A 5.8e+10; beta 0; @@ -810,7 +810,7 @@ reactions } un-named-reaction-101 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C + CH2 = H + C2H"; A 5e+10; beta 0; @@ -818,7 +818,7 @@ reactions } un-named-reaction-102 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C + CH3 = H + C2H2"; A 5e+10; beta 0; @@ -826,7 +826,7 @@ reactions } un-named-reaction-103 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + O2 = O + HCO"; A 6.71e+10; beta 0; @@ -834,7 +834,7 @@ reactions } un-named-reaction-104 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + H2 = H + CH2"; A 1.08e+11; beta 0; @@ -842,7 +842,7 @@ reactions } un-named-reaction-105 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + H2O = H + CH2O"; A 5.71e+09; beta 0; @@ -850,7 +850,7 @@ reactions } un-named-reaction-106 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CH2 = H + C2H2"; A 4e+10; beta 0; @@ -858,7 +858,7 @@ reactions } un-named-reaction-107 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CH3 = H + C2H3"; A 3e+10; beta 0; @@ -866,7 +866,7 @@ reactions } un-named-reaction-108 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CH4 = H + C2H4"; A 6e+10; beta 0; @@ -874,7 +874,7 @@ reactions } un-named-reaction-109 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CO2 = HCO + CO"; A 1.9e+11; beta 0; @@ -882,7 +882,7 @@ reactions } un-named-reaction-110 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CH2O = H + CH2CO"; A 9.46e+10; beta 0; @@ -890,7 +890,7 @@ reactions } un-named-reaction-111 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + HCCO = CO + C2H2"; A 5e+10; beta 0; @@ -898,7 +898,7 @@ reactions } un-named-reaction-112 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH2 + O2 = OH + H + CO"; A 5e+09; beta 0; @@ -906,7 +906,7 @@ reactions } un-named-reaction-113 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + H2 = H + CH3"; A 500; beta 2; @@ -914,7 +914,7 @@ reactions } un-named-reaction-114 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2CH2 = H2 + C2H2"; A 1.6e+12; beta 0; @@ -922,7 +922,7 @@ reactions } un-named-reaction-115 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + CH3 = H + C2H4"; A 4e+10; beta 0; @@ -930,7 +930,7 @@ reactions } un-named-reaction-116 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + CH4 = 2CH3"; A 2460; beta 2; @@ -938,7 +938,7 @@ reactions } un-named-reaction-117 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + HCCO = C2H3 + CO"; A 3e+10; beta 0; @@ -946,7 +946,7 @@ reactions } un-named-reaction-118 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + N2 = CH2 + N2"; A 1.5e+10; beta 0; @@ -954,7 +954,7 @@ reactions } un-named-reaction-119 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + AR = CH2 + AR"; A 9e+09; beta 0; @@ -962,7 +962,7 @@ reactions } un-named-reaction-120 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + O2 = H + OH + CO"; A 2.8e+10; beta 0; @@ -970,7 +970,7 @@ reactions } un-named-reaction-121 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + O2 = CO + H2O"; A 1.2e+10; beta 0; @@ -978,7 +978,7 @@ reactions } un-named-reaction-122 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + H2 = CH3 + H"; A 7e+10; beta 0; @@ -986,7 +986,7 @@ reactions } un-named-reaction-123 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + H2O = CH2 + H2O"; A 3e+10; beta 0; @@ -994,7 +994,7 @@ reactions } un-named-reaction-124 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CH3 = H + C2H4"; A 1.2e+10; beta 0; @@ -1002,7 +1002,7 @@ reactions } un-named-reaction-125 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CH4 = 2CH3"; A 1.6e+10; beta 0; @@ -1010,7 +1010,7 @@ reactions } un-named-reaction-126 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CO = CH2 + CO"; A 9e+09; beta 0; @@ -1018,7 +1018,7 @@ reactions } un-named-reaction-127 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CO2 = CH2 + CO2"; A 7e+09; beta 0; @@ -1026,7 +1026,7 @@ reactions } un-named-reaction-128 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CO2 = CO + CH2O"; A 1.4e+10; beta 0; @@ -1034,7 +1034,7 @@ reactions } un-named-reaction-129 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + C2H6 = CH3 + C2H5"; A 4e+10; beta 0; @@ -1042,7 +1042,7 @@ reactions } un-named-reaction-130 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + O2 = O + CH3O"; A 3.56e+10; beta 0; @@ -1050,7 +1050,7 @@ reactions } un-named-reaction-131 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + O2 = OH + CH2O"; A 2.31e+09; beta 0; @@ -1058,7 +1058,7 @@ reactions } un-named-reaction-132 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + H2O2 = HO2 + CH4"; A 24.5; beta 2.47; @@ -1066,7 +1066,7 @@ reactions } un-named-reaction-133 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2CH3 = H + C2H5"; A 6.84e+09; beta 0.1; @@ -1074,7 +1074,7 @@ reactions } un-named-reaction-134 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + HCO = CH4 + CO"; A 2.648e+10; beta 0; @@ -1082,7 +1082,7 @@ reactions } un-named-reaction-135 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + CH2O = HCO + CH4"; A 3.32; beta 2.81; @@ -1090,7 +1090,7 @@ reactions } un-named-reaction-136 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + CH3OH = CH2OH + CH4"; A 30000; beta 1.5; @@ -1098,7 +1098,7 @@ reactions } un-named-reaction-137 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + CH3OH = CH3O + CH4"; A 10000; beta 1.5; @@ -1106,7 +1106,7 @@ reactions } un-named-reaction-138 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + C2H4 = C2H3 + CH4"; A 227; beta 2; @@ -1114,7 +1114,7 @@ reactions } un-named-reaction-139 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + C2H6 = C2H5 + CH4"; A 6140; beta 1.74; @@ -1122,7 +1122,7 @@ reactions } un-named-reaction-140 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCO + H2O = H + CO + H2O"; A 1.5e+15; beta -1; @@ -1130,7 +1130,7 @@ reactions } un-named-reaction-141 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCO + O2 = HO2 + CO"; A 1.345e+10; beta 0; @@ -1138,7 +1138,7 @@ reactions } un-named-reaction-142 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2OH + O2 = HO2 + CH2O"; A 1.8e+10; beta 0; @@ -1146,7 +1146,7 @@ reactions } un-named-reaction-143 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3O + O2 = HO2 + CH2O"; A 4.28e-16; beta 7.6; @@ -1154,7 +1154,7 @@ reactions } un-named-reaction-144 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H + O2 = HCO + CO"; A 1e+10; beta 0; @@ -1162,7 +1162,7 @@ reactions } un-named-reaction-145 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H + H2 = H + C2H2"; A 5.68e+07; beta 0.9; @@ -1170,7 +1170,7 @@ reactions } un-named-reaction-146 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H3 + O2 = HCO + CH2O"; A 4.58e+13; beta -1.39; @@ -1178,7 +1178,7 @@ reactions } un-named-reaction-147 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H5 + O2 = HO2 + C2H4"; A 8.4e+08; beta 0; @@ -1186,7 +1186,7 @@ reactions } un-named-reaction-148 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCCO + O2 = OH + 2CO"; A 3.2e+09; beta 0; @@ -1194,7 +1194,7 @@ reactions } un-named-reaction-149 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2HCCO = 2CO + C2H2"; A 1e+10; beta 0; @@ -1202,7 +1202,7 @@ reactions } un-named-reaction-150 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "N + NO = N2 + O"; A 2.7e+10; beta 0; @@ -1210,7 +1210,7 @@ reactions } un-named-reaction-151 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "N + O2 = NO + O"; A 9e+06; beta 1; @@ -1218,7 +1218,7 @@ reactions } un-named-reaction-152 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "N + OH = NO + H"; A 3.36e+10; beta 0; @@ -1226,7 +1226,7 @@ reactions } un-named-reaction-153 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "N2O + O = N2 + O2"; A 1.4e+09; beta 0; @@ -1234,7 +1234,7 @@ reactions } un-named-reaction-154 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "N2O + O = 2NO"; A 2.9e+10; beta 0; @@ -1242,7 +1242,7 @@ reactions } un-named-reaction-155 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "N2O + H = N2 + OH"; A 3.87e+11; beta 0; @@ -1250,7 +1250,7 @@ reactions } un-named-reaction-156 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "N2O + OH = N2 + HO2"; A 2e+09; beta 0; @@ -1258,7 +1258,7 @@ reactions } un-named-reaction-157 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + NO = NO2 + OH"; A 2.11e+09; beta 0; @@ -1266,7 +1266,7 @@ reactions } un-named-reaction-158 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NO2 + O = NO + O2"; A 3.9e+09; beta 0; @@ -1274,7 +1274,7 @@ reactions } un-named-reaction-159 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NO2 + H = NO + OH"; A 1.32e+11; beta 0; @@ -1282,7 +1282,7 @@ reactions } un-named-reaction-160 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + O = NO + H"; A 4e+10; beta 0; @@ -1290,7 +1290,7 @@ reactions } un-named-reaction-161 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + H = N + H2"; A 3.2e+10; beta 0; @@ -1298,7 +1298,7 @@ reactions } un-named-reaction-162 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + OH = HNO + H"; A 2e+10; beta 0; @@ -1306,7 +1306,7 @@ reactions } un-named-reaction-163 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + OH = N + H2O"; A 2e+06; beta 1.2; @@ -1314,7 +1314,7 @@ reactions } un-named-reaction-164 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + O2 = HNO + O"; A 461; beta 2; @@ -1322,7 +1322,7 @@ reactions } un-named-reaction-165 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + O2 = NO + OH"; A 1280; beta 1.5; @@ -1330,7 +1330,7 @@ reactions } un-named-reaction-166 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + N = N2 + H"; A 1.5e+10; beta 0; @@ -1338,7 +1338,7 @@ reactions } un-named-reaction-167 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + H2O = HNO + H2"; A 2e+10; beta 0; @@ -1346,7 +1346,7 @@ reactions } un-named-reaction-168 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + NO = N2 + OH"; A 2.16e+10; beta -0.23; @@ -1354,7 +1354,7 @@ reactions } un-named-reaction-169 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + NO = N2O + H"; A 3.65e+11; beta -0.45; @@ -1362,7 +1362,7 @@ reactions } un-named-reaction-170 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH2 + O = OH + NH"; A 3e+09; beta 0; @@ -1370,7 +1370,7 @@ reactions } un-named-reaction-171 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH2 + O = H + HNO"; A 3.9e+10; beta 0; @@ -1378,7 +1378,7 @@ reactions } un-named-reaction-172 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH2 + H = NH + H2"; A 4e+10; beta 0; @@ -1386,7 +1386,7 @@ reactions } un-named-reaction-173 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH2 + OH = NH + H2O"; A 90000; beta 1.5; @@ -1394,7 +1394,7 @@ reactions } un-named-reaction-174 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NNH = N2 + H"; A 3.3e+08; beta 0; @@ -1402,7 +1402,7 @@ reactions } un-named-reaction-175 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NNH + O2 = HO2 + N2"; A 5e+09; beta 0; @@ -1410,7 +1410,7 @@ reactions } un-named-reaction-176 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NNH + O = OH + N2"; A 2.5e+10; beta 0; @@ -1418,7 +1418,7 @@ reactions } un-named-reaction-177 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NNH + O = NH + NO"; A 7e+10; beta 0; @@ -1426,7 +1426,7 @@ reactions } un-named-reaction-178 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NNH + H = H2 + N2"; A 5e+10; beta 0; @@ -1434,7 +1434,7 @@ reactions } un-named-reaction-179 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NNH + OH = H2O + N2"; A 2e+10; beta 0; @@ -1442,7 +1442,7 @@ reactions } un-named-reaction-180 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NNH + CH3 = CH4 + N2"; A 2.5e+10; beta 0; @@ -1450,7 +1450,7 @@ reactions } un-named-reaction-181 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNO + O = NO + OH"; A 2.5e+10; beta 0; @@ -1458,7 +1458,7 @@ reactions } un-named-reaction-182 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNO + H = H2 + NO"; A 9e+08; beta 0.72; @@ -1466,7 +1466,7 @@ reactions } un-named-reaction-183 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNO + OH = NO + H2O"; A 13000; beta 1.9; @@ -1474,7 +1474,7 @@ reactions } un-named-reaction-184 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNO + O2 = HO2 + NO"; A 1e+10; beta 0; @@ -1482,7 +1482,7 @@ reactions } un-named-reaction-185 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CN + O = CO + N"; A 7.7e+10; beta 0; @@ -1490,7 +1490,7 @@ reactions } un-named-reaction-186 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CN + OH = NCO + H"; A 4e+10; beta 0; @@ -1498,7 +1498,7 @@ reactions } un-named-reaction-187 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CN + H2O = HCN + OH"; A 8e+09; beta 0; @@ -1506,7 +1506,7 @@ reactions } un-named-reaction-188 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CN + O2 = NCO + O"; A 6.14e+09; beta 0; @@ -1514,7 +1514,7 @@ reactions } un-named-reaction-189 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CN + H2 = HCN + H"; A 295; beta 2.45; @@ -1522,7 +1522,7 @@ reactions } un-named-reaction-190 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NCO + O = NO + CO"; A 2.35e+10; beta 0; @@ -1530,7 +1530,7 @@ reactions } un-named-reaction-191 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NCO + H = NH + CO"; A 5.4e+10; beta 0; @@ -1538,7 +1538,7 @@ reactions } un-named-reaction-192 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NCO + OH = NO + H + CO"; A 2.5e+09; beta 0; @@ -1546,7 +1546,7 @@ reactions } un-named-reaction-193 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NCO + N = N2 + CO"; A 2e+10; beta 0; @@ -1554,7 +1554,7 @@ reactions } un-named-reaction-194 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NCO + O2 = NO + CO2"; A 2e+09; beta 0; @@ -1562,7 +1562,7 @@ reactions } un-named-reaction-195 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NCO + NO = N2O + CO"; A 1.9e+14; beta -1.52; @@ -1570,7 +1570,7 @@ reactions } un-named-reaction-196 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NCO + NO = N2 + CO2"; A 3.8e+15; beta -2; @@ -1578,7 +1578,7 @@ reactions } un-named-reaction-197 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCN + O = NCO + H"; A 20.3; beta 2.64; @@ -1586,7 +1586,7 @@ reactions } un-named-reaction-198 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCN + O = NH + CO"; A 5.07; beta 2.64; @@ -1594,7 +1594,7 @@ reactions } un-named-reaction-199 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCN + O = CN + OH"; A 3.91e+06; beta 1.58; @@ -1602,7 +1602,7 @@ reactions } un-named-reaction-200 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCN + OH = HOCN + H"; A 1100; beta 2.03; @@ -1610,7 +1610,7 @@ reactions } un-named-reaction-201 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCN + OH = HNCO + H"; A 4.4; beta 2.26; @@ -1618,7 +1618,7 @@ reactions } un-named-reaction-202 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCN + OH = NH2 + CO"; A 0.16; beta 2.56; @@ -1626,7 +1626,7 @@ reactions } un-named-reaction-203 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H2CN + N = N2 + CH2"; A 6e+10; beta 0; @@ -1634,7 +1634,7 @@ reactions } un-named-reaction-204 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C + N2 = CN + N"; A 6.3e+10; beta 0; @@ -1642,7 +1642,7 @@ reactions } un-named-reaction-205 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + N2 = HCN + N"; A 3.12e+06; beta 0.88; @@ -1650,7 +1650,7 @@ reactions } un-named-reaction-206 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + N2 = HCN + NH"; A 1e+10; beta 0; @@ -1658,7 +1658,7 @@ reactions } un-named-reaction-207 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + N2 = NH + HCN"; A 1e+08; beta 0; @@ -1666,7 +1666,7 @@ reactions } un-named-reaction-208 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C + NO = CN + O"; A 1.9e+10; beta 0; @@ -1674,7 +1674,7 @@ reactions } un-named-reaction-209 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C + NO = CO + N"; A 2.9e+10; beta 0; @@ -1682,7 +1682,7 @@ reactions } un-named-reaction-210 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + NO = HCN + O"; A 4.1e+10; beta 0; @@ -1690,7 +1690,7 @@ reactions } un-named-reaction-211 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + NO = H + NCO"; A 1.62e+10; beta 0; @@ -1698,7 +1698,7 @@ reactions } un-named-reaction-212 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + NO = N + HCO"; A 2.46e+10; beta 0; @@ -1706,7 +1706,7 @@ reactions } un-named-reaction-213 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + NO = H + HNCO"; A 3.1e+14; beta -1.38; @@ -1714,7 +1714,7 @@ reactions } un-named-reaction-214 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + NO = OH + HCN"; A 2.9e+11; beta -0.69; @@ -1722,7 +1722,7 @@ reactions } un-named-reaction-215 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + NO = H + HCNO"; A 3.8e+10; beta -0.36; @@ -1730,7 +1730,7 @@ reactions } un-named-reaction-216 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + NO = H + HNCO"; A 3.1e+14; beta -1.38; @@ -1738,7 +1738,7 @@ reactions } un-named-reaction-217 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + NO = OH + HCN"; A 2.9e+11; beta -0.69; @@ -1746,7 +1746,7 @@ reactions } un-named-reaction-218 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + NO = H + HCNO"; A 3.8e+10; beta -0.36; @@ -1754,7 +1754,7 @@ reactions } un-named-reaction-219 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + NO = HCN + H2O"; A 9.6e+10; beta 0; @@ -1762,7 +1762,7 @@ reactions } un-named-reaction-220 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + NO = H2CN + OH"; A 1e+09; beta 0; @@ -1770,7 +1770,7 @@ reactions } un-named-reaction-221 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCNN + O = CO + H + N2"; A 2.2e+10; beta 0; @@ -1778,7 +1778,7 @@ reactions } un-named-reaction-222 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCNN + O = HCN + NO"; A 2e+09; beta 0; @@ -1786,7 +1786,7 @@ reactions } un-named-reaction-223 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCNN + O2 = O + HCO + N2"; A 1.2e+10; beta 0; @@ -1794,7 +1794,7 @@ reactions } un-named-reaction-224 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCNN + OH = H + HCO + N2"; A 1.2e+10; beta 0; @@ -1802,7 +1802,7 @@ reactions } un-named-reaction-225 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCNN + H = CH2 + N2"; A 1e+11; beta 0; @@ -1810,7 +1810,7 @@ reactions } un-named-reaction-226 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNCO + O = NH + CO2"; A 98000; beta 1.41; @@ -1818,7 +1818,7 @@ reactions } un-named-reaction-227 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNCO + O = HNO + CO"; A 150000; beta 1.57; @@ -1826,7 +1826,7 @@ reactions } un-named-reaction-228 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNCO + O = NCO + OH"; A 2200; beta 2.11; @@ -1834,7 +1834,7 @@ reactions } un-named-reaction-229 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNCO + H = NH2 + CO"; A 22500; beta 1.7; @@ -1842,7 +1842,7 @@ reactions } un-named-reaction-230 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNCO + H = H2 + NCO"; A 105; beta 2.5; @@ -1850,7 +1850,7 @@ reactions } un-named-reaction-231 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNCO + OH = NCO + H2O"; A 33000; beta 1.5; @@ -1858,7 +1858,7 @@ reactions } un-named-reaction-232 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNCO + OH = NH2 + CO2"; A 3300; beta 1.5; @@ -1866,7 +1866,7 @@ reactions } un-named-reaction-233 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCNO + H = H + HNCO"; A 2.1e+12; beta -0.69; @@ -1874,7 +1874,7 @@ reactions } un-named-reaction-234 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCNO + H = OH + HCN"; A 2.7e+08; beta 0.18; @@ -1882,7 +1882,7 @@ reactions } un-named-reaction-235 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCNO + H = NH2 + CO"; A 1.7e+11; beta -0.75; @@ -1890,7 +1890,7 @@ reactions } un-named-reaction-236 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HOCN + H = H + HNCO"; A 20000; beta 2; @@ -1898,7 +1898,7 @@ reactions } un-named-reaction-237 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCCO + NO = HCNO + CO"; A 9e+09; beta 0; @@ -1906,7 +1906,7 @@ reactions } un-named-reaction-238 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + N = H2CN + H"; A 6.1e+11; beta -0.31; @@ -1914,7 +1914,7 @@ reactions } un-named-reaction-239 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + N = HCN + H2"; A 3.7e+09; beta 0.15; @@ -1922,7 +1922,7 @@ reactions } un-named-reaction-240 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH3 + H = NH2 + H2"; A 540; beta 2.4; @@ -1930,7 +1930,7 @@ reactions } un-named-reaction-241 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH3 + OH = NH2 + H2O"; A 50000; beta 1.6; @@ -1938,7 +1938,7 @@ reactions } un-named-reaction-242 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH3 + O = NH2 + OH"; A 9400; beta 1.94; @@ -1946,7 +1946,7 @@ reactions } un-named-reaction-243 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + CO2 = HNO + CO"; A 1e+10; beta 0; @@ -1954,7 +1954,7 @@ reactions } un-named-reaction-244 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CN + NO2 = NCO + NO"; A 6.16e+12; beta -0.752; @@ -1962,7 +1962,7 @@ reactions } un-named-reaction-245 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NCO + NO2 = N2O + CO2"; A 3.25e+09; beta 0; @@ -1970,7 +1970,7 @@ reactions } un-named-reaction-246 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "N + CO2 = NO + CO"; A 3e+09; beta 0; @@ -1978,7 +1978,7 @@ reactions } un-named-reaction-247 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O + CH3 = H + H2 + CO"; A 3.37e+10; beta 0; @@ -1986,7 +1986,7 @@ reactions } un-named-reaction-248 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H4 = H + CH2CHO"; A 6700; beta 1.83; @@ -1994,7 +1994,7 @@ reactions } un-named-reaction-249 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H5 = H + CH3CHO"; A 1.096e+11; beta 0; @@ -2002,7 +2002,7 @@ reactions } un-named-reaction-250 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + HO2 = O2 + H2O"; A 5e+12; beta 0; @@ -2010,7 +2010,7 @@ reactions } un-named-reaction-251 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "OH + CH3 = H2 + CH2O"; A 8e+06; beta 0.5; @@ -2018,7 +2018,7 @@ reactions } un-named-reaction-252 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH2 + O2 = 2H + CO2"; A 5.8e+09; beta 0; @@ -2026,7 +2026,7 @@ reactions } un-named-reaction-253 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + O2 = O + CH2O"; A 2.4e+09; beta 0; @@ -2034,7 +2034,7 @@ reactions } un-named-reaction-254 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH2 + CH2 = 2H + C2H2"; A 2e+11; beta 0; @@ -2042,7 +2042,7 @@ reactions } un-named-reaction-255 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH2(S) + H2O = H2 + CH2O"; A 6.82e+07; beta 0.25; @@ -2050,7 +2050,7 @@ reactions } un-named-reaction-256 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H3 + O2 = O + CH2CHO"; A 3.03e+08; beta 0.29; @@ -2058,7 +2058,7 @@ reactions } un-named-reaction-257 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H3 + O2 = HO2 + C2H2"; A 1337; beta 1.61; @@ -2066,7 +2066,7 @@ reactions } un-named-reaction-258 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3CHO = OH + CH2CHO"; A 2.92e+09; beta 0; @@ -2074,7 +2074,7 @@ reactions } un-named-reaction-259 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O + CH3CHO = OH + CH3 + CO"; A 2.92e+09; beta 0; @@ -2082,7 +2082,7 @@ reactions } un-named-reaction-260 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O2 + CH3CHO = HO2 + CH3 + CO"; A 3.01e+10; beta 0; @@ -2090,7 +2090,7 @@ reactions } un-named-reaction-261 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3CHO = CH2CHO + H2"; A 2.05e+06; beta 1.16; @@ -2098,7 +2098,7 @@ reactions } un-named-reaction-262 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "H + CH3CHO = CH3 + H2 + CO"; A 2.05e+06; beta 1.16; @@ -2106,7 +2106,7 @@ reactions } un-named-reaction-263 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "OH + CH3CHO = CH3 + H2O + CO"; A 2.343e+07; beta 0.73; @@ -2114,7 +2114,7 @@ reactions } un-named-reaction-264 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "HO2 + CH3CHO = CH3 + H2O2 + CO"; A 3.01e+09; beta 0; @@ -2122,7 +2122,7 @@ reactions } un-named-reaction-265 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH3 + CH3CHO = CH3 + CH4 + CO"; A 2720; beta 1.77; @@ -2130,7 +2130,7 @@ reactions } un-named-reaction-266 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O + CH2CHO = H + CH2 + CO2"; A 1.5e+11; beta 0; @@ -2138,7 +2138,7 @@ reactions } un-named-reaction-267 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O2 + CH2CHO = OH + CO + CH2O"; A 1.81e+07; beta 0; @@ -2146,7 +2146,7 @@ reactions } un-named-reaction-268 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O2 + CH2CHO = OH + 2HCO"; A 2.35e+07; beta 0; @@ -2154,7 +2154,7 @@ reactions } un-named-reaction-269 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2CHO = CH3 + HCO"; A 2.2e+10; beta 0; @@ -2162,7 +2162,7 @@ reactions } un-named-reaction-270 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2CHO = CH2CO + H2"; A 1.1e+10; beta 0; @@ -2170,7 +2170,7 @@ reactions } un-named-reaction-271 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2CHO = H2O + CH2CO"; A 1.2e+10; beta 0; @@ -2178,7 +2178,7 @@ reactions } un-named-reaction-272 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2CHO = HCO + CH2OH"; A 3.01e+10; beta 0; @@ -2186,7 +2186,7 @@ reactions } un-named-reaction-273 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C3H8 = OH + C3H7"; A 193; beta 2.68; @@ -2194,7 +2194,7 @@ reactions } un-named-reaction-274 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C3H8 = C3H7 + H2"; A 1320; beta 2.54; @@ -2202,7 +2202,7 @@ reactions } un-named-reaction-275 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C3H8 = C3H7 + H2O"; A 31600; beta 1.8; @@ -2210,7 +2210,7 @@ reactions } un-named-reaction-276 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C3H7 + H2O2 = HO2 + C3H8"; A 0.378; beta 2.72; @@ -2218,7 +2218,7 @@ reactions } un-named-reaction-277 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + C3H8 = C3H7 + CH4"; A 0.000903; beta 3.65; @@ -2226,7 +2226,7 @@ reactions } un-named-reaction-278 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C3H7 = C2H5 + CH2O"; A 9.64e+10; beta 0; @@ -2234,7 +2234,7 @@ reactions } un-named-reaction-279 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C3H7 = CH3 + C2H5"; A 4060; beta 2.19; @@ -2242,7 +2242,7 @@ reactions } un-named-reaction-280 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C3H7 = C2H5 + CH2OH"; A 2.41e+10; beta 0; @@ -2250,7 +2250,7 @@ reactions } un-named-reaction-281 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + C3H7 = O2 + C3H8"; A 2.55e+07; beta 0.255; @@ -2258,7 +2258,7 @@ reactions } un-named-reaction-282 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "HO2 + C3H7 = OH + C2H5 + CH2O"; A 2.41e+10; beta 0; @@ -2266,7 +2266,7 @@ reactions } un-named-reaction-283 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + C3H7 = 2C2H5"; A 1.927e+10; beta -0.32; @@ -2274,7 +2274,7 @@ reactions } un-named-reaction-284 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "2O = O2"; A 1.2e+11; beta -1; @@ -2340,7 +2340,7 @@ reactions } un-named-reaction-285 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "O + H = OH"; A 5e+11; beta -1; @@ -2406,7 +2406,7 @@ reactions } un-named-reaction-286 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "H + O2 = HO2"; A 2.8e+12; beta -0.86; @@ -2472,7 +2472,7 @@ reactions } un-named-reaction-287 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "2H = H2"; A 1e+12; beta -1; @@ -2538,7 +2538,7 @@ reactions } un-named-reaction-288 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "H + OH = H2O"; A 2.2e+16; beta -2; @@ -2604,7 +2604,7 @@ reactions } un-named-reaction-289 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "HCO = H + CO"; A 1.87e+14; beta -1; @@ -2670,7 +2670,7 @@ reactions } un-named-reaction-290 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "NO + O = NO2"; A 1.06e+14; beta -1.41; @@ -2736,7 +2736,7 @@ reactions } un-named-reaction-291 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "NNH = N2 + H"; A 1.3e+11; beta -0.11; @@ -2802,7 +2802,7 @@ reactions } un-named-reaction-292 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "H + NO = HNO"; A 4.48e+13; beta -1.32; @@ -2868,7 +2868,7 @@ reactions } un-named-reaction-293 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "NCO = N + CO"; A 3.1e+11; beta 0; @@ -2934,7 +2934,7 @@ reactions } un-named-reaction-294 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "HCN = H + CN"; A 1.04e+26; beta -3.3; @@ -3000,7 +3000,7 @@ reactions } un-named-reaction-295 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "HNCO = NH + CO"; A 1.18e+13; beta 0; @@ -3066,7 +3066,7 @@ reactions } un-named-reaction-296 { - type reversibleArrheniusLindemannFallOffReaction; + type reversibleArrheniusLindemannFallOff; reaction "O + CO = CO2"; k0 { @@ -3147,7 +3147,7 @@ reactions } un-named-reaction-297 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2 = CH3"; k0 { @@ -3232,7 +3232,7 @@ reactions } un-named-reaction-298 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH3 = CH4"; k0 { @@ -3317,7 +3317,7 @@ reactions } un-named-reaction-299 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + HCO = CH2O"; k0 { @@ -3402,7 +3402,7 @@ reactions } un-named-reaction-300 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2O = CH2OH"; k0 { @@ -3487,7 +3487,7 @@ reactions } un-named-reaction-301 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2OH = CH3OH"; k0 { @@ -3572,7 +3572,7 @@ reactions } un-named-reaction-302 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH3O = CH3OH"; k0 { @@ -3657,7 +3657,7 @@ reactions } un-named-reaction-303 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H = C2H2"; k0 { @@ -3742,7 +3742,7 @@ reactions } un-named-reaction-304 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H2 = C2H3"; k0 { @@ -3827,7 +3827,7 @@ reactions } un-named-reaction-305 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H3 = C2H4"; k0 { @@ -3912,7 +3912,7 @@ reactions } un-named-reaction-306 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H4 = C2H5"; k0 { @@ -3997,7 +3997,7 @@ reactions } un-named-reaction-307 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H5 = C2H6"; k0 { @@ -4082,7 +4082,7 @@ reactions } un-named-reaction-308 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H2 + CO = CH2O"; k0 { @@ -4167,7 +4167,7 @@ reactions } un-named-reaction-309 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "2OH = H2O2"; k0 { @@ -4252,7 +4252,7 @@ reactions } un-named-reaction-310 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "OH + CH3 = CH3OH"; k0 { @@ -4337,7 +4337,7 @@ reactions } un-named-reaction-311 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH + CO = HCCO"; k0 { @@ -4422,7 +4422,7 @@ reactions } un-named-reaction-312 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH2 + CO = CH2CO"; k0 { @@ -4507,7 +4507,7 @@ reactions } un-named-reaction-313 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH2(S) + H2O = CH3OH"; k0 { @@ -4592,7 +4592,7 @@ reactions } un-named-reaction-314 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "2CH3 = C2H6"; k0 { @@ -4677,7 +4677,7 @@ reactions } un-named-reaction-315 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "C2H4 = H2 + C2H2"; k0 { @@ -4762,7 +4762,7 @@ reactions } un-named-reaction-316 { - type reversibleArrheniusLindemannFallOffReaction; + type reversibleArrheniusLindemannFallOff; reaction "N2O = N2 + O"; k0 { @@ -4843,7 +4843,7 @@ reactions } un-named-reaction-317 { - type reversibleArrheniusLindemannFallOffReaction; + type reversibleArrheniusLindemannFallOff; reaction "H + HCN = H2CN"; k0 { @@ -4924,7 +4924,7 @@ reactions } un-named-reaction-318 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH + N2 = HCNN"; k0 { @@ -5009,7 +5009,7 @@ reactions } un-named-reaction-319 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH + H2 = CH3"; k0 { @@ -5094,7 +5094,7 @@ reactions } un-named-reaction-320 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2CO = CH2CHO"; k0 { @@ -5179,7 +5179,7 @@ reactions } un-named-reaction-321 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH3 + C2H5 = C3H8"; k0 { @@ -5264,7 +5264,7 @@ reactions } un-named-reaction-322 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH3 + C2H4 = C3H7"; k0 { @@ -5349,7 +5349,7 @@ reactions } un-named-reaction-323 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C3H7 = C3H8"; k0 { @@ -5434,7 +5434,7 @@ reactions } un-named-reaction-324 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2O = CH3O"; k0 { diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/reactionsGRI b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/reactionsGRI index 31fbdbdf83..2091ce56af 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/reactionsGRI +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/constant/reactionsGRI @@ -2,7 +2,7 @@ reactions { un-named-reaction-0 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + H2 = H + OH"; A 38.7; beta 2.7; @@ -10,7 +10,7 @@ reactions } un-named-reaction-1 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + HO2 = OH + O2"; A 2e+10; beta 0; @@ -18,7 +18,7 @@ reactions } un-named-reaction-2 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + H2O2 = OH + HO2"; A 9630; beta 2; @@ -26,7 +26,7 @@ reactions } un-named-reaction-3 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH = H + CO"; A 5.7e+10; beta 0; @@ -34,7 +34,7 @@ reactions } un-named-reaction-4 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2 = H + HCO"; A 8e+10; beta 0; @@ -42,7 +42,7 @@ reactions } un-named-reaction-5 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2(S) = H2 + CO"; A 1.5e+10; beta 0; @@ -50,7 +50,7 @@ reactions } un-named-reaction-6 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2(S) = H + HCO"; A 1.5e+10; beta 0; @@ -58,7 +58,7 @@ reactions } un-named-reaction-7 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3 = H + CH2O"; A 5.06e+10; beta 0; @@ -66,7 +66,7 @@ reactions } un-named-reaction-8 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH4 = OH + CH3"; A 1.02e+06; beta 1.5; @@ -74,7 +74,7 @@ reactions } un-named-reaction-9 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + HCO = OH + CO"; A 3e+10; beta 0; @@ -82,7 +82,7 @@ reactions } un-named-reaction-10 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + HCO = H + CO2"; A 3e+10; beta 0; @@ -90,7 +90,7 @@ reactions } un-named-reaction-11 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2O = OH + HCO"; A 3.9e+10; beta 0; @@ -98,7 +98,7 @@ reactions } un-named-reaction-12 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2OH = OH + CH2O"; A 1e+10; beta 0; @@ -106,7 +106,7 @@ reactions } un-named-reaction-13 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3O = OH + CH2O"; A 1e+10; beta 0; @@ -114,7 +114,7 @@ reactions } un-named-reaction-14 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3OH = OH + CH2OH"; A 388; beta 2.5; @@ -122,7 +122,7 @@ reactions } un-named-reaction-15 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3OH = OH + CH3O"; A 130; beta 2.5; @@ -130,7 +130,7 @@ reactions } un-named-reaction-16 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H = CH + CO"; A 5e+10; beta 0; @@ -138,7 +138,7 @@ reactions } un-named-reaction-17 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H2 = H + HCCO"; A 13500; beta 2; @@ -146,7 +146,7 @@ reactions } un-named-reaction-18 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H2 = OH + C2H"; A 4.6e+16; beta -1.41; @@ -154,7 +154,7 @@ reactions } un-named-reaction-19 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H2 = CO + CH2"; A 6940; beta 2; @@ -162,7 +162,7 @@ reactions } un-named-reaction-20 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H3 = H + CH2CO"; A 3e+10; beta 0; @@ -170,7 +170,7 @@ reactions } un-named-reaction-21 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H4 = CH3 + HCO"; A 12500; beta 1.83; @@ -178,7 +178,7 @@ reactions } un-named-reaction-22 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H5 = CH3 + CH2O"; A 2.24e+10; beta 0; @@ -186,7 +186,7 @@ reactions } un-named-reaction-23 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H6 = OH + C2H5"; A 89800; beta 1.92; @@ -194,7 +194,7 @@ reactions } un-named-reaction-24 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + HCCO = H + 2CO"; A 1e+11; beta 0; @@ -202,7 +202,7 @@ reactions } un-named-reaction-25 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2CO = OH + HCCO"; A 1e+10; beta 0; @@ -210,7 +210,7 @@ reactions } un-named-reaction-26 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2CO = CH2 + CO2"; A 1.75e+09; beta 0; @@ -218,7 +218,7 @@ reactions } un-named-reaction-27 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O2 + CO = O + CO2"; A 2.5e+09; beta 0; @@ -226,7 +226,7 @@ reactions } un-named-reaction-28 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O2 + CH2O = HO2 + HCO"; A 1e+11; beta 0; @@ -234,7 +234,7 @@ reactions } un-named-reaction-29 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + 2O2 = HO2 + O2"; A 2.08e+13; beta -1.24; @@ -242,7 +242,7 @@ reactions } un-named-reaction-30 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + O2 + H2O = HO2 + H2O"; A 1.126e+13; beta -0.76; @@ -250,7 +250,7 @@ reactions } un-named-reaction-31 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + O2 + N2 = HO2 + N2"; A 2.6e+13; beta -1.24; @@ -258,7 +258,7 @@ reactions } un-named-reaction-32 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + O2 + AR = HO2 + AR"; A 7e+11; beta -0.8; @@ -266,7 +266,7 @@ reactions } un-named-reaction-33 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + O2 = O + OH"; A 2.65e+13; beta -0.6707; @@ -274,7 +274,7 @@ reactions } un-named-reaction-34 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2H + H2 = 2H2"; A 9e+10; beta -0.6; @@ -282,7 +282,7 @@ reactions } un-named-reaction-35 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2H + H2O = H2 + H2O"; A 6e+13; beta -1.25; @@ -290,7 +290,7 @@ reactions } un-named-reaction-36 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2H + CO2 = H2 + CO2"; A 5.5e+14; beta -2; @@ -298,7 +298,7 @@ reactions } un-named-reaction-37 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HO2 = O + H2O"; A 3.97e+09; beta 0; @@ -306,7 +306,7 @@ reactions } un-named-reaction-38 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HO2 = O2 + H2"; A 4.48e+10; beta 0; @@ -314,7 +314,7 @@ reactions } un-named-reaction-39 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HO2 = 2OH"; A 8.4e+10; beta 0; @@ -322,7 +322,7 @@ reactions } un-named-reaction-40 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + H2O2 = HO2 + H2"; A 12100; beta 2; @@ -330,7 +330,7 @@ reactions } un-named-reaction-41 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + H2O2 = OH + H2O"; A 1e+10; beta 0; @@ -338,7 +338,7 @@ reactions } un-named-reaction-42 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH = C + H2"; A 1.65e+11; beta 0; @@ -346,7 +346,7 @@ reactions } un-named-reaction-43 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2(S) = CH + H2"; A 3e+10; beta 0; @@ -354,7 +354,7 @@ reactions } un-named-reaction-44 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH4 = CH3 + H2"; A 660000; beta 1.62; @@ -362,7 +362,7 @@ reactions } un-named-reaction-45 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HCO = H2 + CO"; A 7.34e+10; beta 0; @@ -370,7 +370,7 @@ reactions } un-named-reaction-46 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2O = HCO + H2"; A 57400; beta 1.9; @@ -378,7 +378,7 @@ reactions } un-named-reaction-47 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2OH = H2 + CH2O"; A 2e+10; beta 0; @@ -386,7 +386,7 @@ reactions } un-named-reaction-48 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2OH = OH + CH3"; A 1.65e+08; beta 0.65; @@ -394,7 +394,7 @@ reactions } un-named-reaction-49 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2OH = CH2(S) + H2O"; A 3.28e+10; beta -0.09; @@ -402,7 +402,7 @@ reactions } un-named-reaction-50 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3O = H + CH2OH"; A 41500; beta 1.63; @@ -410,7 +410,7 @@ reactions } un-named-reaction-51 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3O = H2 + CH2O"; A 2e+10; beta 0; @@ -418,7 +418,7 @@ reactions } un-named-reaction-52 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3O = OH + CH3"; A 1.5e+09; beta 0.5; @@ -426,7 +426,7 @@ reactions } un-named-reaction-53 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3O = CH2(S) + H2O"; A 2.62e+11; beta -0.23; @@ -434,7 +434,7 @@ reactions } un-named-reaction-54 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3OH = CH2OH + H2"; A 17000; beta 2.1; @@ -442,7 +442,7 @@ reactions } un-named-reaction-55 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3OH = CH3O + H2"; A 4200; beta 2.1; @@ -450,7 +450,7 @@ reactions } un-named-reaction-56 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C2H3 = H2 + C2H2"; A 3e+10; beta 0; @@ -458,7 +458,7 @@ reactions } un-named-reaction-57 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C2H4 = C2H3 + H2"; A 1325; beta 2.53; @@ -466,7 +466,7 @@ reactions } un-named-reaction-58 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C2H5 = H2 + C2H4"; A 2e+09; beta 0; @@ -474,7 +474,7 @@ reactions } un-named-reaction-59 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C2H6 = C2H5 + H2"; A 115000; beta 1.9; @@ -482,7 +482,7 @@ reactions } un-named-reaction-60 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HCCO = CH2(S) + CO"; A 1e+11; beta 0; @@ -490,7 +490,7 @@ reactions } un-named-reaction-61 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2CO = HCCO + H2"; A 5e+10; beta 0; @@ -498,7 +498,7 @@ reactions } un-named-reaction-62 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2CO = CH3 + CO"; A 1.13e+10; beta 0; @@ -506,7 +506,7 @@ reactions } un-named-reaction-63 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HCCOH = H + CH2CO"; A 1e+10; beta 0; @@ -514,7 +514,7 @@ reactions } un-named-reaction-64 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + H2 = H + H2O"; A 216000; beta 1.51; @@ -522,7 +522,7 @@ reactions } un-named-reaction-65 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2OH = O + H2O"; A 35.7; beta 2.4; @@ -530,7 +530,7 @@ reactions } un-named-reaction-66 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + HO2 = O2 + H2O"; A 1.45e+10; beta 0; @@ -538,7 +538,7 @@ reactions } un-named-reaction-67 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + H2O2 = HO2 + H2O"; A 2e+09; beta 0; @@ -546,7 +546,7 @@ reactions } un-named-reaction-68 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + H2O2 = HO2 + H2O"; A 1.7e+15; beta 0; @@ -554,7 +554,7 @@ reactions } un-named-reaction-69 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C = H + CO"; A 5e+10; beta 0; @@ -562,7 +562,7 @@ reactions } un-named-reaction-70 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH = H + HCO"; A 3e+10; beta 0; @@ -570,7 +570,7 @@ reactions } un-named-reaction-71 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2 = H + CH2O"; A 2e+10; beta 0; @@ -578,7 +578,7 @@ reactions } un-named-reaction-72 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2 = CH + H2O"; A 11300; beta 2; @@ -586,7 +586,7 @@ reactions } un-named-reaction-73 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2(S) = H + CH2O"; A 3e+10; beta 0; @@ -594,7 +594,7 @@ reactions } un-named-reaction-74 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3 = CH2 + H2O"; A 56000; beta 1.6; @@ -602,7 +602,7 @@ reactions } un-named-reaction-75 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3 = CH2(S) + H2O"; A 6.44e+14; beta -1.34; @@ -610,7 +610,7 @@ reactions } un-named-reaction-76 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH4 = CH3 + H2O"; A 100000; beta 1.6; @@ -618,7 +618,7 @@ reactions } un-named-reaction-77 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CO = H + CO2"; A 47600; beta 1.228; @@ -626,7 +626,7 @@ reactions } un-named-reaction-78 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + HCO = H2O + CO"; A 5e+10; beta 0; @@ -634,7 +634,7 @@ reactions } un-named-reaction-79 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2O = HCO + H2O"; A 3.43e+06; beta 1.18; @@ -642,7 +642,7 @@ reactions } un-named-reaction-80 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2OH = H2O + CH2O"; A 5e+09; beta 0; @@ -650,7 +650,7 @@ reactions } un-named-reaction-81 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3O = H2O + CH2O"; A 5e+09; beta 0; @@ -658,7 +658,7 @@ reactions } un-named-reaction-82 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3OH = CH2OH + H2O"; A 1440; beta 2; @@ -666,7 +666,7 @@ reactions } un-named-reaction-83 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3OH = CH3O + H2O"; A 6300; beta 2; @@ -674,7 +674,7 @@ reactions } un-named-reaction-84 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H = H + HCCO"; A 2e+10; beta 0; @@ -682,7 +682,7 @@ reactions } un-named-reaction-85 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H2 = H + CH2CO"; A 2.18e-07; beta 4.5; @@ -690,7 +690,7 @@ reactions } un-named-reaction-86 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H2 = H + HCCOH"; A 504; beta 2.3; @@ -698,7 +698,7 @@ reactions } un-named-reaction-87 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H2 = C2H + H2O"; A 33700; beta 2; @@ -706,7 +706,7 @@ reactions } un-named-reaction-88 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H2 = CH3 + CO"; A 4.83e-07; beta 4; @@ -714,7 +714,7 @@ reactions } un-named-reaction-89 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H3 = H2O + C2H2"; A 5e+09; beta 0; @@ -722,7 +722,7 @@ reactions } un-named-reaction-90 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H4 = C2H3 + H2O"; A 3600; beta 2; @@ -730,7 +730,7 @@ reactions } un-named-reaction-91 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H6 = C2H5 + H2O"; A 3540; beta 2.12; @@ -738,7 +738,7 @@ reactions } un-named-reaction-92 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2CO = HCCO + H2O"; A 7.5e+09; beta 0; @@ -746,7 +746,7 @@ reactions } un-named-reaction-93 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2HO2 = O2 + H2O2"; A 1.3e+08; beta 0; @@ -754,7 +754,7 @@ reactions } un-named-reaction-94 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2HO2 = O2 + H2O2"; A 4.2e+11; beta 0; @@ -762,7 +762,7 @@ reactions } un-named-reaction-95 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CH2 = OH + CH2O"; A 2e+10; beta 0; @@ -770,7 +770,7 @@ reactions } un-named-reaction-96 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CH3 = O2 + CH4"; A 1e+09; beta 0; @@ -778,7 +778,7 @@ reactions } un-named-reaction-97 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CH3 = OH + CH3O"; A 3.78e+10; beta 0; @@ -786,7 +786,7 @@ reactions } un-named-reaction-98 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CO = OH + CO2"; A 1.5e+11; beta 0; @@ -794,7 +794,7 @@ reactions } un-named-reaction-99 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CH2O = HCO + H2O2"; A 5600; beta 2; @@ -802,7 +802,7 @@ reactions } un-named-reaction-100 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C + O2 = O + CO"; A 5.8e+10; beta 0; @@ -810,7 +810,7 @@ reactions } un-named-reaction-101 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C + CH2 = H + C2H"; A 5e+10; beta 0; @@ -818,7 +818,7 @@ reactions } un-named-reaction-102 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C + CH3 = H + C2H2"; A 5e+10; beta 0; @@ -826,7 +826,7 @@ reactions } un-named-reaction-103 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + O2 = O + HCO"; A 6.71e+10; beta 0; @@ -834,7 +834,7 @@ reactions } un-named-reaction-104 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + H2 = H + CH2"; A 1.08e+11; beta 0; @@ -842,7 +842,7 @@ reactions } un-named-reaction-105 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + H2O = H + CH2O"; A 5.71e+09; beta 0; @@ -850,7 +850,7 @@ reactions } un-named-reaction-106 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CH2 = H + C2H2"; A 4e+10; beta 0; @@ -858,7 +858,7 @@ reactions } un-named-reaction-107 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CH3 = H + C2H3"; A 3e+10; beta 0; @@ -866,7 +866,7 @@ reactions } un-named-reaction-108 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CH4 = H + C2H4"; A 6e+10; beta 0; @@ -874,7 +874,7 @@ reactions } un-named-reaction-109 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CO2 = HCO + CO"; A 1.9e+11; beta 0; @@ -882,7 +882,7 @@ reactions } un-named-reaction-110 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CH2O = H + CH2CO"; A 9.46e+10; beta 0; @@ -890,7 +890,7 @@ reactions } un-named-reaction-111 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + HCCO = CO + C2H2"; A 5e+10; beta 0; @@ -898,7 +898,7 @@ reactions } un-named-reaction-112 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH2 + O2 = OH + H + CO"; A 5e+09; beta 0; @@ -906,7 +906,7 @@ reactions } un-named-reaction-113 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + H2 = H + CH3"; A 500; beta 2; @@ -914,7 +914,7 @@ reactions } un-named-reaction-114 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2CH2 = H2 + C2H2"; A 1.6e+12; beta 0; @@ -922,7 +922,7 @@ reactions } un-named-reaction-115 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + CH3 = H + C2H4"; A 4e+10; beta 0; @@ -930,7 +930,7 @@ reactions } un-named-reaction-116 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + CH4 = 2CH3"; A 2460; beta 2; @@ -938,7 +938,7 @@ reactions } un-named-reaction-117 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + HCCO = C2H3 + CO"; A 3e+10; beta 0; @@ -946,7 +946,7 @@ reactions } un-named-reaction-118 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + N2 = CH2 + N2"; A 1.5e+10; beta 0; @@ -954,7 +954,7 @@ reactions } un-named-reaction-119 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + AR = CH2 + AR"; A 9e+09; beta 0; @@ -962,7 +962,7 @@ reactions } un-named-reaction-120 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + O2 = H + OH + CO"; A 2.8e+10; beta 0; @@ -970,7 +970,7 @@ reactions } un-named-reaction-121 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + O2 = CO + H2O"; A 1.2e+10; beta 0; @@ -978,7 +978,7 @@ reactions } un-named-reaction-122 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + H2 = CH3 + H"; A 7e+10; beta 0; @@ -986,7 +986,7 @@ reactions } un-named-reaction-123 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + H2O = CH2 + H2O"; A 3e+10; beta 0; @@ -994,7 +994,7 @@ reactions } un-named-reaction-124 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CH3 = H + C2H4"; A 1.2e+10; beta 0; @@ -1002,7 +1002,7 @@ reactions } un-named-reaction-125 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CH4 = 2CH3"; A 1.6e+10; beta 0; @@ -1010,7 +1010,7 @@ reactions } un-named-reaction-126 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CO = CH2 + CO"; A 9e+09; beta 0; @@ -1018,7 +1018,7 @@ reactions } un-named-reaction-127 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CO2 = CH2 + CO2"; A 7e+09; beta 0; @@ -1026,7 +1026,7 @@ reactions } un-named-reaction-128 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CO2 = CO + CH2O"; A 1.4e+10; beta 0; @@ -1034,7 +1034,7 @@ reactions } un-named-reaction-129 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + C2H6 = CH3 + C2H5"; A 4e+10; beta 0; @@ -1042,7 +1042,7 @@ reactions } un-named-reaction-130 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + O2 = O + CH3O"; A 3.56e+10; beta 0; @@ -1050,7 +1050,7 @@ reactions } un-named-reaction-131 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + O2 = OH + CH2O"; A 2.31e+09; beta 0; @@ -1058,7 +1058,7 @@ reactions } un-named-reaction-132 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + H2O2 = HO2 + CH4"; A 24.5; beta 2.47; @@ -1066,7 +1066,7 @@ reactions } un-named-reaction-133 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2CH3 = H + C2H5"; A 6.84e+09; beta 0.1; @@ -1074,7 +1074,7 @@ reactions } un-named-reaction-134 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + HCO = CH4 + CO"; A 2.648e+10; beta 0; @@ -1082,7 +1082,7 @@ reactions } un-named-reaction-135 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + CH2O = HCO + CH4"; A 3.32; beta 2.81; @@ -1090,7 +1090,7 @@ reactions } un-named-reaction-136 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + CH3OH = CH2OH + CH4"; A 30000; beta 1.5; @@ -1098,7 +1098,7 @@ reactions } un-named-reaction-137 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + CH3OH = CH3O + CH4"; A 10000; beta 1.5; @@ -1106,7 +1106,7 @@ reactions } un-named-reaction-138 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + C2H4 = C2H3 + CH4"; A 227; beta 2; @@ -1114,7 +1114,7 @@ reactions } un-named-reaction-139 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + C2H6 = C2H5 + CH4"; A 6140; beta 1.74; @@ -1122,7 +1122,7 @@ reactions } un-named-reaction-140 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCO + H2O = H + CO + H2O"; A 1.5e+15; beta -1; @@ -1130,7 +1130,7 @@ reactions } un-named-reaction-141 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCO + O2 = HO2 + CO"; A 1.345e+10; beta 0; @@ -1138,7 +1138,7 @@ reactions } un-named-reaction-142 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2OH + O2 = HO2 + CH2O"; A 1.8e+10; beta 0; @@ -1146,7 +1146,7 @@ reactions } un-named-reaction-143 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3O + O2 = HO2 + CH2O"; A 4.28e-16; beta 7.6; @@ -1154,7 +1154,7 @@ reactions } un-named-reaction-144 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H + O2 = HCO + CO"; A 1e+10; beta 0; @@ -1162,7 +1162,7 @@ reactions } un-named-reaction-145 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H + H2 = H + C2H2"; A 5.68e+07; beta 0.9; @@ -1170,7 +1170,7 @@ reactions } un-named-reaction-146 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H3 + O2 = HCO + CH2O"; A 4.58e+13; beta -1.39; @@ -1178,7 +1178,7 @@ reactions } un-named-reaction-147 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H5 + O2 = HO2 + C2H4"; A 8.4e+08; beta 0; @@ -1186,7 +1186,7 @@ reactions } un-named-reaction-148 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCCO + O2 = OH + 2CO"; A 3.2e+09; beta 0; @@ -1194,7 +1194,7 @@ reactions } un-named-reaction-149 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2HCCO = 2CO + C2H2"; A 1e+10; beta 0; @@ -1202,7 +1202,7 @@ reactions } un-named-reaction-150 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "N + NO = N2 + O"; A 2.7e+10; beta 0; @@ -1210,7 +1210,7 @@ reactions } un-named-reaction-151 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "N + O2 = NO + O"; A 9e+06; beta 1; @@ -1218,7 +1218,7 @@ reactions } un-named-reaction-152 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "N + OH = NO + H"; A 3.36e+10; beta 0; @@ -1226,7 +1226,7 @@ reactions } un-named-reaction-153 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "N2O + O = N2 + O2"; A 1.4e+09; beta 0; @@ -1234,7 +1234,7 @@ reactions } un-named-reaction-154 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "N2O + O = 2NO"; A 2.9e+10; beta 0; @@ -1242,7 +1242,7 @@ reactions } un-named-reaction-155 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "N2O + H = N2 + OH"; A 3.87e+11; beta 0; @@ -1250,7 +1250,7 @@ reactions } un-named-reaction-156 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "N2O + OH = N2 + HO2"; A 2e+09; beta 0; @@ -1258,7 +1258,7 @@ reactions } un-named-reaction-157 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + NO = NO2 + OH"; A 2.11e+09; beta 0; @@ -1266,7 +1266,7 @@ reactions } un-named-reaction-158 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NO2 + O = NO + O2"; A 3.9e+09; beta 0; @@ -1274,7 +1274,7 @@ reactions } un-named-reaction-159 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NO2 + H = NO + OH"; A 1.32e+11; beta 0; @@ -1282,7 +1282,7 @@ reactions } un-named-reaction-160 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + O = NO + H"; A 4e+10; beta 0; @@ -1290,7 +1290,7 @@ reactions } un-named-reaction-161 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + H = N + H2"; A 3.2e+10; beta 0; @@ -1298,7 +1298,7 @@ reactions } un-named-reaction-162 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + OH = HNO + H"; A 2e+10; beta 0; @@ -1306,7 +1306,7 @@ reactions } un-named-reaction-163 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + OH = N + H2O"; A 2e+06; beta 1.2; @@ -1314,7 +1314,7 @@ reactions } un-named-reaction-164 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + O2 = HNO + O"; A 461; beta 2; @@ -1322,7 +1322,7 @@ reactions } un-named-reaction-165 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + O2 = NO + OH"; A 1280; beta 1.5; @@ -1330,7 +1330,7 @@ reactions } un-named-reaction-166 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + N = N2 + H"; A 1.5e+10; beta 0; @@ -1338,7 +1338,7 @@ reactions } un-named-reaction-167 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + H2O = HNO + H2"; A 2e+10; beta 0; @@ -1346,7 +1346,7 @@ reactions } un-named-reaction-168 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + NO = N2 + OH"; A 2.16e+10; beta -0.23; @@ -1354,7 +1354,7 @@ reactions } un-named-reaction-169 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + NO = N2O + H"; A 3.65e+11; beta -0.45; @@ -1362,7 +1362,7 @@ reactions } un-named-reaction-170 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH2 + O = OH + NH"; A 3e+09; beta 0; @@ -1370,7 +1370,7 @@ reactions } un-named-reaction-171 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH2 + O = H + HNO"; A 3.9e+10; beta 0; @@ -1378,7 +1378,7 @@ reactions } un-named-reaction-172 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH2 + H = NH + H2"; A 4e+10; beta 0; @@ -1386,7 +1386,7 @@ reactions } un-named-reaction-173 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH2 + OH = NH + H2O"; A 90000; beta 1.5; @@ -1394,7 +1394,7 @@ reactions } un-named-reaction-174 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NNH = N2 + H"; A 3.3e+08; beta 0; @@ -1402,7 +1402,7 @@ reactions } un-named-reaction-175 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NNH + O2 = HO2 + N2"; A 5e+09; beta 0; @@ -1410,7 +1410,7 @@ reactions } un-named-reaction-176 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NNH + O = OH + N2"; A 2.5e+10; beta 0; @@ -1418,7 +1418,7 @@ reactions } un-named-reaction-177 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NNH + O = NH + NO"; A 7e+10; beta 0; @@ -1426,7 +1426,7 @@ reactions } un-named-reaction-178 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NNH + H = H2 + N2"; A 5e+10; beta 0; @@ -1434,7 +1434,7 @@ reactions } un-named-reaction-179 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NNH + OH = H2O + N2"; A 2e+10; beta 0; @@ -1442,7 +1442,7 @@ reactions } un-named-reaction-180 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NNH + CH3 = CH4 + N2"; A 2.5e+10; beta 0; @@ -1450,7 +1450,7 @@ reactions } un-named-reaction-181 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNO + O = NO + OH"; A 2.5e+10; beta 0; @@ -1458,7 +1458,7 @@ reactions } un-named-reaction-182 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNO + H = H2 + NO"; A 9e+08; beta 0.72; @@ -1466,7 +1466,7 @@ reactions } un-named-reaction-183 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNO + OH = NO + H2O"; A 13000; beta 1.9; @@ -1474,7 +1474,7 @@ reactions } un-named-reaction-184 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNO + O2 = HO2 + NO"; A 1e+10; beta 0; @@ -1482,7 +1482,7 @@ reactions } un-named-reaction-185 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CN + O = CO + N"; A 7.7e+10; beta 0; @@ -1490,7 +1490,7 @@ reactions } un-named-reaction-186 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CN + OH = NCO + H"; A 4e+10; beta 0; @@ -1498,7 +1498,7 @@ reactions } un-named-reaction-187 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CN + H2O = HCN + OH"; A 8e+09; beta 0; @@ -1506,7 +1506,7 @@ reactions } un-named-reaction-188 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CN + O2 = NCO + O"; A 6.14e+09; beta 0; @@ -1514,7 +1514,7 @@ reactions } un-named-reaction-189 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CN + H2 = HCN + H"; A 295; beta 2.45; @@ -1522,7 +1522,7 @@ reactions } un-named-reaction-190 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NCO + O = NO + CO"; A 2.35e+10; beta 0; @@ -1530,7 +1530,7 @@ reactions } un-named-reaction-191 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NCO + H = NH + CO"; A 5.4e+10; beta 0; @@ -1538,7 +1538,7 @@ reactions } un-named-reaction-192 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NCO + OH = NO + H + CO"; A 2.5e+09; beta 0; @@ -1546,7 +1546,7 @@ reactions } un-named-reaction-193 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NCO + N = N2 + CO"; A 2e+10; beta 0; @@ -1554,7 +1554,7 @@ reactions } un-named-reaction-194 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NCO + O2 = NO + CO2"; A 2e+09; beta 0; @@ -1562,7 +1562,7 @@ reactions } un-named-reaction-195 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NCO + NO = N2O + CO"; A 1.9e+14; beta -1.52; @@ -1570,7 +1570,7 @@ reactions } un-named-reaction-196 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NCO + NO = N2 + CO2"; A 3.8e+15; beta -2; @@ -1578,7 +1578,7 @@ reactions } un-named-reaction-197 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCN + O = NCO + H"; A 20.3; beta 2.64; @@ -1586,7 +1586,7 @@ reactions } un-named-reaction-198 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCN + O = NH + CO"; A 5.07; beta 2.64; @@ -1594,7 +1594,7 @@ reactions } un-named-reaction-199 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCN + O = CN + OH"; A 3.91e+06; beta 1.58; @@ -1602,7 +1602,7 @@ reactions } un-named-reaction-200 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCN + OH = HOCN + H"; A 1100; beta 2.03; @@ -1610,7 +1610,7 @@ reactions } un-named-reaction-201 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCN + OH = HNCO + H"; A 4.4; beta 2.26; @@ -1618,7 +1618,7 @@ reactions } un-named-reaction-202 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCN + OH = NH2 + CO"; A 0.16; beta 2.56; @@ -1626,7 +1626,7 @@ reactions } un-named-reaction-203 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H2CN + N = N2 + CH2"; A 6e+10; beta 0; @@ -1634,7 +1634,7 @@ reactions } un-named-reaction-204 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C + N2 = CN + N"; A 6.3e+10; beta 0; @@ -1642,7 +1642,7 @@ reactions } un-named-reaction-205 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + N2 = HCN + N"; A 3.12e+06; beta 0.88; @@ -1650,7 +1650,7 @@ reactions } un-named-reaction-206 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + N2 = HCN + NH"; A 1e+10; beta 0; @@ -1658,7 +1658,7 @@ reactions } un-named-reaction-207 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + N2 = NH + HCN"; A 1e+08; beta 0; @@ -1666,7 +1666,7 @@ reactions } un-named-reaction-208 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C + NO = CN + O"; A 1.9e+10; beta 0; @@ -1674,7 +1674,7 @@ reactions } un-named-reaction-209 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C + NO = CO + N"; A 2.9e+10; beta 0; @@ -1682,7 +1682,7 @@ reactions } un-named-reaction-210 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + NO = HCN + O"; A 4.1e+10; beta 0; @@ -1690,7 +1690,7 @@ reactions } un-named-reaction-211 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + NO = H + NCO"; A 1.62e+10; beta 0; @@ -1698,7 +1698,7 @@ reactions } un-named-reaction-212 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + NO = N + HCO"; A 2.46e+10; beta 0; @@ -1706,7 +1706,7 @@ reactions } un-named-reaction-213 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + NO = H + HNCO"; A 3.1e+14; beta -1.38; @@ -1714,7 +1714,7 @@ reactions } un-named-reaction-214 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + NO = OH + HCN"; A 2.9e+11; beta -0.69; @@ -1722,7 +1722,7 @@ reactions } un-named-reaction-215 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + NO = H + HCNO"; A 3.8e+10; beta -0.36; @@ -1730,7 +1730,7 @@ reactions } un-named-reaction-216 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + NO = H + HNCO"; A 3.1e+14; beta -1.38; @@ -1738,7 +1738,7 @@ reactions } un-named-reaction-217 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + NO = OH + HCN"; A 2.9e+11; beta -0.69; @@ -1746,7 +1746,7 @@ reactions } un-named-reaction-218 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + NO = H + HCNO"; A 3.8e+10; beta -0.36; @@ -1754,7 +1754,7 @@ reactions } un-named-reaction-219 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + NO = HCN + H2O"; A 9.6e+10; beta 0; @@ -1762,7 +1762,7 @@ reactions } un-named-reaction-220 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + NO = H2CN + OH"; A 1e+09; beta 0; @@ -1770,7 +1770,7 @@ reactions } un-named-reaction-221 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCNN + O = CO + H + N2"; A 2.2e+10; beta 0; @@ -1778,7 +1778,7 @@ reactions } un-named-reaction-222 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCNN + O = HCN + NO"; A 2e+09; beta 0; @@ -1786,7 +1786,7 @@ reactions } un-named-reaction-223 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCNN + O2 = O + HCO + N2"; A 1.2e+10; beta 0; @@ -1794,7 +1794,7 @@ reactions } un-named-reaction-224 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCNN + OH = H + HCO + N2"; A 1.2e+10; beta 0; @@ -1802,7 +1802,7 @@ reactions } un-named-reaction-225 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCNN + H = CH2 + N2"; A 1e+11; beta 0; @@ -1810,7 +1810,7 @@ reactions } un-named-reaction-226 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNCO + O = NH + CO2"; A 98000; beta 1.41; @@ -1818,7 +1818,7 @@ reactions } un-named-reaction-227 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNCO + O = HNO + CO"; A 150000; beta 1.57; @@ -1826,7 +1826,7 @@ reactions } un-named-reaction-228 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNCO + O = NCO + OH"; A 2200; beta 2.11; @@ -1834,7 +1834,7 @@ reactions } un-named-reaction-229 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNCO + H = NH2 + CO"; A 22500; beta 1.7; @@ -1842,7 +1842,7 @@ reactions } un-named-reaction-230 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNCO + H = H2 + NCO"; A 105; beta 2.5; @@ -1850,7 +1850,7 @@ reactions } un-named-reaction-231 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNCO + OH = NCO + H2O"; A 33000; beta 1.5; @@ -1858,7 +1858,7 @@ reactions } un-named-reaction-232 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNCO + OH = NH2 + CO2"; A 3300; beta 1.5; @@ -1866,7 +1866,7 @@ reactions } un-named-reaction-233 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCNO + H = H + HNCO"; A 2.1e+12; beta -0.69; @@ -1874,7 +1874,7 @@ reactions } un-named-reaction-234 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCNO + H = OH + HCN"; A 2.7e+08; beta 0.18; @@ -1882,7 +1882,7 @@ reactions } un-named-reaction-235 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCNO + H = NH2 + CO"; A 1.7e+11; beta -0.75; @@ -1890,7 +1890,7 @@ reactions } un-named-reaction-236 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HOCN + H = H + HNCO"; A 20000; beta 2; @@ -1898,7 +1898,7 @@ reactions } un-named-reaction-237 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCCO + NO = HCNO + CO"; A 9e+09; beta 0; @@ -1906,7 +1906,7 @@ reactions } un-named-reaction-238 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + N = H2CN + H"; A 6.1e+11; beta -0.31; @@ -1914,7 +1914,7 @@ reactions } un-named-reaction-239 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + N = HCN + H2"; A 3.7e+09; beta 0.15; @@ -1922,7 +1922,7 @@ reactions } un-named-reaction-240 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH3 + H = NH2 + H2"; A 540; beta 2.4; @@ -1930,7 +1930,7 @@ reactions } un-named-reaction-241 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH3 + OH = NH2 + H2O"; A 50000; beta 1.6; @@ -1938,7 +1938,7 @@ reactions } un-named-reaction-242 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH3 + O = NH2 + OH"; A 9400; beta 1.94; @@ -1946,7 +1946,7 @@ reactions } un-named-reaction-243 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + CO2 = HNO + CO"; A 1e+10; beta 0; @@ -1954,7 +1954,7 @@ reactions } un-named-reaction-244 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CN + NO2 = NCO + NO"; A 6.16e+12; beta -0.752; @@ -1962,7 +1962,7 @@ reactions } un-named-reaction-245 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NCO + NO2 = N2O + CO2"; A 3.25e+09; beta 0; @@ -1970,7 +1970,7 @@ reactions } un-named-reaction-246 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "N + CO2 = NO + CO"; A 3e+09; beta 0; @@ -1978,7 +1978,7 @@ reactions } un-named-reaction-247 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O + CH3 = H + H2 + CO"; A 3.37e+10; beta 0; @@ -1986,7 +1986,7 @@ reactions } un-named-reaction-248 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H4 = H + CH2CHO"; A 6700; beta 1.83; @@ -1994,7 +1994,7 @@ reactions } un-named-reaction-249 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H5 = H + CH3CHO"; A 1.096e+11; beta 0; @@ -2002,7 +2002,7 @@ reactions } un-named-reaction-250 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + HO2 = O2 + H2O"; A 5e+12; beta 0; @@ -2010,7 +2010,7 @@ reactions } un-named-reaction-251 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "OH + CH3 = H2 + CH2O"; A 8e+06; beta 0.5; @@ -2018,7 +2018,7 @@ reactions } un-named-reaction-252 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH2 + O2 = 2H + CO2"; A 5.8e+09; beta 0; @@ -2026,7 +2026,7 @@ reactions } un-named-reaction-253 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + O2 = O + CH2O"; A 2.4e+09; beta 0; @@ -2034,7 +2034,7 @@ reactions } un-named-reaction-254 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH2 + CH2 = 2H + C2H2"; A 2e+11; beta 0; @@ -2042,7 +2042,7 @@ reactions } un-named-reaction-255 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH2(S) + H2O = H2 + CH2O"; A 6.82e+07; beta 0.25; @@ -2050,7 +2050,7 @@ reactions } un-named-reaction-256 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H3 + O2 = O + CH2CHO"; A 3.03e+08; beta 0.29; @@ -2058,7 +2058,7 @@ reactions } un-named-reaction-257 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H3 + O2 = HO2 + C2H2"; A 1337; beta 1.61; @@ -2066,7 +2066,7 @@ reactions } un-named-reaction-258 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3CHO = OH + CH2CHO"; A 2.92e+09; beta 0; @@ -2074,7 +2074,7 @@ reactions } un-named-reaction-259 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O + CH3CHO = OH + CH3 + CO"; A 2.92e+09; beta 0; @@ -2082,7 +2082,7 @@ reactions } un-named-reaction-260 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O2 + CH3CHO = HO2 + CH3 + CO"; A 3.01e+10; beta 0; @@ -2090,7 +2090,7 @@ reactions } un-named-reaction-261 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3CHO = CH2CHO + H2"; A 2.05e+06; beta 1.16; @@ -2098,7 +2098,7 @@ reactions } un-named-reaction-262 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "H + CH3CHO = CH3 + H2 + CO"; A 2.05e+06; beta 1.16; @@ -2106,7 +2106,7 @@ reactions } un-named-reaction-263 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "OH + CH3CHO = CH3 + H2O + CO"; A 2.343e+07; beta 0.73; @@ -2114,7 +2114,7 @@ reactions } un-named-reaction-264 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "HO2 + CH3CHO = CH3 + H2O2 + CO"; A 3.01e+09; beta 0; @@ -2122,7 +2122,7 @@ reactions } un-named-reaction-265 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH3 + CH3CHO = CH3 + CH4 + CO"; A 2720; beta 1.77; @@ -2130,7 +2130,7 @@ reactions } un-named-reaction-266 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O + CH2CHO = H + CH2 + CO2"; A 1.5e+11; beta 0; @@ -2138,7 +2138,7 @@ reactions } un-named-reaction-267 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O2 + CH2CHO = OH + CO + CH2O"; A 1.81e+07; beta 0; @@ -2146,7 +2146,7 @@ reactions } un-named-reaction-268 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O2 + CH2CHO = OH + 2HCO"; A 2.35e+07; beta 0; @@ -2154,7 +2154,7 @@ reactions } un-named-reaction-269 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2CHO = CH3 + HCO"; A 2.2e+10; beta 0; @@ -2162,7 +2162,7 @@ reactions } un-named-reaction-270 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2CHO = CH2CO + H2"; A 1.1e+10; beta 0; @@ -2170,7 +2170,7 @@ reactions } un-named-reaction-271 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2CHO = H2O + CH2CO"; A 1.2e+10; beta 0; @@ -2178,7 +2178,7 @@ reactions } un-named-reaction-272 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2CHO = HCO + CH2OH"; A 3.01e+10; beta 0; @@ -2186,7 +2186,7 @@ reactions } un-named-reaction-273 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C3H8 = OH + C3H7"; A 193; beta 2.68; @@ -2194,7 +2194,7 @@ reactions } un-named-reaction-274 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C3H8 = C3H7 + H2"; A 1320; beta 2.54; @@ -2202,7 +2202,7 @@ reactions } un-named-reaction-275 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C3H8 = C3H7 + H2O"; A 31600; beta 1.8; @@ -2210,7 +2210,7 @@ reactions } un-named-reaction-276 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C3H7 + H2O2 = HO2 + C3H8"; A 0.378; beta 2.72; @@ -2218,7 +2218,7 @@ reactions } un-named-reaction-277 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + C3H8 = C3H7 + CH4"; A 0.000903; beta 3.65; @@ -2226,7 +2226,7 @@ reactions } un-named-reaction-278 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C3H7 = C2H5 + CH2O"; A 9.64e+10; beta 0; @@ -2234,7 +2234,7 @@ reactions } un-named-reaction-279 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C3H7 = CH3 + C2H5"; A 4060; beta 2.19; @@ -2242,7 +2242,7 @@ reactions } un-named-reaction-280 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C3H7 = C2H5 + CH2OH"; A 2.41e+10; beta 0; @@ -2250,7 +2250,7 @@ reactions } un-named-reaction-281 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + C3H7 = O2 + C3H8"; A 2.55e+07; beta 0.255; @@ -2258,7 +2258,7 @@ reactions } un-named-reaction-282 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "HO2 + C3H7 = OH + C2H5 + CH2O"; A 2.41e+10; beta 0; @@ -2266,7 +2266,7 @@ reactions } un-named-reaction-283 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + C3H7 = 2C2H5"; A 1.927e+10; beta -0.32; @@ -2274,7 +2274,7 @@ reactions } un-named-reaction-284 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "2O = O2"; A 1.2e+11; beta -1; @@ -2340,7 +2340,7 @@ reactions } un-named-reaction-285 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "O + H = OH"; A 5e+11; beta -1; @@ -2406,7 +2406,7 @@ reactions } un-named-reaction-286 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "H + O2 = HO2"; A 2.8e+12; beta -0.86; @@ -2472,7 +2472,7 @@ reactions } un-named-reaction-287 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "2H = H2"; A 1e+12; beta -1; @@ -2538,7 +2538,7 @@ reactions } un-named-reaction-288 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "H + OH = H2O"; A 2.2e+16; beta -2; @@ -2604,7 +2604,7 @@ reactions } un-named-reaction-289 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "HCO = H + CO"; A 1.87e+14; beta -1; @@ -2670,7 +2670,7 @@ reactions } un-named-reaction-290 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "NO + O = NO2"; A 1.06e+14; beta -1.41; @@ -2736,7 +2736,7 @@ reactions } un-named-reaction-291 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "NNH = N2 + H"; A 1.3e+11; beta -0.11; @@ -2802,7 +2802,7 @@ reactions } un-named-reaction-292 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "H + NO = HNO"; A 4.48e+13; beta -1.32; @@ -2868,7 +2868,7 @@ reactions } un-named-reaction-293 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "NCO = N + CO"; A 3.1e+11; beta 0; @@ -2934,7 +2934,7 @@ reactions } un-named-reaction-294 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "HCN = H + CN"; A 1.04e+26; beta -3.3; @@ -3000,7 +3000,7 @@ reactions } un-named-reaction-295 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "HNCO = NH + CO"; A 1.18e+13; beta 0; @@ -3066,7 +3066,7 @@ reactions } un-named-reaction-296 { - type reversibleArrheniusLindemannFallOffReaction; + type reversibleArrheniusLindemannFallOff; reaction "O + CO = CO2"; k0 { @@ -3147,7 +3147,7 @@ reactions } un-named-reaction-297 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2 = CH3"; k0 { @@ -3232,7 +3232,7 @@ reactions } un-named-reaction-298 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH3 = CH4"; k0 { @@ -3317,7 +3317,7 @@ reactions } un-named-reaction-299 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + HCO = CH2O"; k0 { @@ -3402,7 +3402,7 @@ reactions } un-named-reaction-300 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2O = CH2OH"; k0 { @@ -3487,7 +3487,7 @@ reactions } un-named-reaction-301 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2OH = CH3OH"; k0 { @@ -3572,7 +3572,7 @@ reactions } un-named-reaction-302 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH3O = CH3OH"; k0 { @@ -3657,7 +3657,7 @@ reactions } un-named-reaction-303 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H = C2H2"; k0 { @@ -3742,7 +3742,7 @@ reactions } un-named-reaction-304 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H2 = C2H3"; k0 { @@ -3827,7 +3827,7 @@ reactions } un-named-reaction-305 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H3 = C2H4"; k0 { @@ -3912,7 +3912,7 @@ reactions } un-named-reaction-306 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H4 = C2H5"; k0 { @@ -3997,7 +3997,7 @@ reactions } un-named-reaction-307 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H5 = C2H6"; k0 { @@ -4082,7 +4082,7 @@ reactions } un-named-reaction-308 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H2 + CO = CH2O"; k0 { @@ -4167,7 +4167,7 @@ reactions } un-named-reaction-309 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "2OH = H2O2"; k0 { @@ -4252,7 +4252,7 @@ reactions } un-named-reaction-310 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "OH + CH3 = CH3OH"; k0 { @@ -4337,7 +4337,7 @@ reactions } un-named-reaction-311 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH + CO = HCCO"; k0 { @@ -4422,7 +4422,7 @@ reactions } un-named-reaction-312 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH2 + CO = CH2CO"; k0 { @@ -4507,7 +4507,7 @@ reactions } un-named-reaction-313 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH2(S) + H2O = CH3OH"; k0 { @@ -4592,7 +4592,7 @@ reactions } un-named-reaction-314 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "2CH3 = C2H6"; k0 { @@ -4677,7 +4677,7 @@ reactions } un-named-reaction-315 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "C2H4 = H2 + C2H2"; k0 { @@ -4762,7 +4762,7 @@ reactions } un-named-reaction-316 { - type reversibleArrheniusLindemannFallOffReaction; + type reversibleArrheniusLindemannFallOff; reaction "N2O = N2 + O"; k0 { @@ -4843,7 +4843,7 @@ reactions } un-named-reaction-317 { - type reversibleArrheniusLindemannFallOffReaction; + type reversibleArrheniusLindemannFallOff; reaction "H + HCN = H2CN"; k0 { @@ -4924,7 +4924,7 @@ reactions } un-named-reaction-318 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH + N2 = HCNN"; k0 { @@ -5009,7 +5009,7 @@ reactions } un-named-reaction-319 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH + H2 = CH3"; k0 { @@ -5094,7 +5094,7 @@ reactions } un-named-reaction-320 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2CO = CH2CHO"; k0 { @@ -5179,7 +5179,7 @@ reactions } un-named-reaction-321 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH3 + C2H5 = C3H8"; k0 { @@ -5264,7 +5264,7 @@ reactions } un-named-reaction-322 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH3 + C2H4 = C3H7"; k0 { @@ -5349,7 +5349,7 @@ reactions } un-named-reaction-323 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C3H7 = C3H8"; k0 { @@ -5434,7 +5434,7 @@ reactions } un-named-reaction-324 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2O = CH3O"; k0 { diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/reactionsGRI b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/reactionsGRI index 31fbdbdf83..2091ce56af 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/reactionsGRI +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/constant/reactionsGRI @@ -2,7 +2,7 @@ reactions { un-named-reaction-0 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + H2 = H + OH"; A 38.7; beta 2.7; @@ -10,7 +10,7 @@ reactions } un-named-reaction-1 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + HO2 = OH + O2"; A 2e+10; beta 0; @@ -18,7 +18,7 @@ reactions } un-named-reaction-2 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + H2O2 = OH + HO2"; A 9630; beta 2; @@ -26,7 +26,7 @@ reactions } un-named-reaction-3 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH = H + CO"; A 5.7e+10; beta 0; @@ -34,7 +34,7 @@ reactions } un-named-reaction-4 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2 = H + HCO"; A 8e+10; beta 0; @@ -42,7 +42,7 @@ reactions } un-named-reaction-5 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2(S) = H2 + CO"; A 1.5e+10; beta 0; @@ -50,7 +50,7 @@ reactions } un-named-reaction-6 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2(S) = H + HCO"; A 1.5e+10; beta 0; @@ -58,7 +58,7 @@ reactions } un-named-reaction-7 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3 = H + CH2O"; A 5.06e+10; beta 0; @@ -66,7 +66,7 @@ reactions } un-named-reaction-8 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH4 = OH + CH3"; A 1.02e+06; beta 1.5; @@ -74,7 +74,7 @@ reactions } un-named-reaction-9 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + HCO = OH + CO"; A 3e+10; beta 0; @@ -82,7 +82,7 @@ reactions } un-named-reaction-10 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + HCO = H + CO2"; A 3e+10; beta 0; @@ -90,7 +90,7 @@ reactions } un-named-reaction-11 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2O = OH + HCO"; A 3.9e+10; beta 0; @@ -98,7 +98,7 @@ reactions } un-named-reaction-12 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2OH = OH + CH2O"; A 1e+10; beta 0; @@ -106,7 +106,7 @@ reactions } un-named-reaction-13 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3O = OH + CH2O"; A 1e+10; beta 0; @@ -114,7 +114,7 @@ reactions } un-named-reaction-14 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3OH = OH + CH2OH"; A 388; beta 2.5; @@ -122,7 +122,7 @@ reactions } un-named-reaction-15 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3OH = OH + CH3O"; A 130; beta 2.5; @@ -130,7 +130,7 @@ reactions } un-named-reaction-16 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H = CH + CO"; A 5e+10; beta 0; @@ -138,7 +138,7 @@ reactions } un-named-reaction-17 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H2 = H + HCCO"; A 13500; beta 2; @@ -146,7 +146,7 @@ reactions } un-named-reaction-18 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H2 = OH + C2H"; A 4.6e+16; beta -1.41; @@ -154,7 +154,7 @@ reactions } un-named-reaction-19 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H2 = CO + CH2"; A 6940; beta 2; @@ -162,7 +162,7 @@ reactions } un-named-reaction-20 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H3 = H + CH2CO"; A 3e+10; beta 0; @@ -170,7 +170,7 @@ reactions } un-named-reaction-21 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H4 = CH3 + HCO"; A 12500; beta 1.83; @@ -178,7 +178,7 @@ reactions } un-named-reaction-22 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H5 = CH3 + CH2O"; A 2.24e+10; beta 0; @@ -186,7 +186,7 @@ reactions } un-named-reaction-23 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H6 = OH + C2H5"; A 89800; beta 1.92; @@ -194,7 +194,7 @@ reactions } un-named-reaction-24 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + HCCO = H + 2CO"; A 1e+11; beta 0; @@ -202,7 +202,7 @@ reactions } un-named-reaction-25 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2CO = OH + HCCO"; A 1e+10; beta 0; @@ -210,7 +210,7 @@ reactions } un-named-reaction-26 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH2CO = CH2 + CO2"; A 1.75e+09; beta 0; @@ -218,7 +218,7 @@ reactions } un-named-reaction-27 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O2 + CO = O + CO2"; A 2.5e+09; beta 0; @@ -226,7 +226,7 @@ reactions } un-named-reaction-28 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O2 + CH2O = HO2 + HCO"; A 1e+11; beta 0; @@ -234,7 +234,7 @@ reactions } un-named-reaction-29 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + 2O2 = HO2 + O2"; A 2.08e+13; beta -1.24; @@ -242,7 +242,7 @@ reactions } un-named-reaction-30 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + O2 + H2O = HO2 + H2O"; A 1.126e+13; beta -0.76; @@ -250,7 +250,7 @@ reactions } un-named-reaction-31 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + O2 + N2 = HO2 + N2"; A 2.6e+13; beta -1.24; @@ -258,7 +258,7 @@ reactions } un-named-reaction-32 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + O2 + AR = HO2 + AR"; A 7e+11; beta -0.8; @@ -266,7 +266,7 @@ reactions } un-named-reaction-33 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + O2 = O + OH"; A 2.65e+13; beta -0.6707; @@ -274,7 +274,7 @@ reactions } un-named-reaction-34 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2H + H2 = 2H2"; A 9e+10; beta -0.6; @@ -282,7 +282,7 @@ reactions } un-named-reaction-35 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2H + H2O = H2 + H2O"; A 6e+13; beta -1.25; @@ -290,7 +290,7 @@ reactions } un-named-reaction-36 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2H + CO2 = H2 + CO2"; A 5.5e+14; beta -2; @@ -298,7 +298,7 @@ reactions } un-named-reaction-37 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HO2 = O + H2O"; A 3.97e+09; beta 0; @@ -306,7 +306,7 @@ reactions } un-named-reaction-38 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HO2 = O2 + H2"; A 4.48e+10; beta 0; @@ -314,7 +314,7 @@ reactions } un-named-reaction-39 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HO2 = 2OH"; A 8.4e+10; beta 0; @@ -322,7 +322,7 @@ reactions } un-named-reaction-40 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + H2O2 = HO2 + H2"; A 12100; beta 2; @@ -330,7 +330,7 @@ reactions } un-named-reaction-41 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + H2O2 = OH + H2O"; A 1e+10; beta 0; @@ -338,7 +338,7 @@ reactions } un-named-reaction-42 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH = C + H2"; A 1.65e+11; beta 0; @@ -346,7 +346,7 @@ reactions } un-named-reaction-43 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2(S) = CH + H2"; A 3e+10; beta 0; @@ -354,7 +354,7 @@ reactions } un-named-reaction-44 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH4 = CH3 + H2"; A 660000; beta 1.62; @@ -362,7 +362,7 @@ reactions } un-named-reaction-45 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HCO = H2 + CO"; A 7.34e+10; beta 0; @@ -370,7 +370,7 @@ reactions } un-named-reaction-46 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2O = HCO + H2"; A 57400; beta 1.9; @@ -378,7 +378,7 @@ reactions } un-named-reaction-47 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2OH = H2 + CH2O"; A 2e+10; beta 0; @@ -386,7 +386,7 @@ reactions } un-named-reaction-48 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2OH = OH + CH3"; A 1.65e+08; beta 0.65; @@ -394,7 +394,7 @@ reactions } un-named-reaction-49 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2OH = CH2(S) + H2O"; A 3.28e+10; beta -0.09; @@ -402,7 +402,7 @@ reactions } un-named-reaction-50 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3O = H + CH2OH"; A 41500; beta 1.63; @@ -410,7 +410,7 @@ reactions } un-named-reaction-51 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3O = H2 + CH2O"; A 2e+10; beta 0; @@ -418,7 +418,7 @@ reactions } un-named-reaction-52 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3O = OH + CH3"; A 1.5e+09; beta 0.5; @@ -426,7 +426,7 @@ reactions } un-named-reaction-53 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3O = CH2(S) + H2O"; A 2.62e+11; beta -0.23; @@ -434,7 +434,7 @@ reactions } un-named-reaction-54 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3OH = CH2OH + H2"; A 17000; beta 2.1; @@ -442,7 +442,7 @@ reactions } un-named-reaction-55 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3OH = CH3O + H2"; A 4200; beta 2.1; @@ -450,7 +450,7 @@ reactions } un-named-reaction-56 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C2H3 = H2 + C2H2"; A 3e+10; beta 0; @@ -458,7 +458,7 @@ reactions } un-named-reaction-57 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C2H4 = C2H3 + H2"; A 1325; beta 2.53; @@ -466,7 +466,7 @@ reactions } un-named-reaction-58 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C2H5 = H2 + C2H4"; A 2e+09; beta 0; @@ -474,7 +474,7 @@ reactions } un-named-reaction-59 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C2H6 = C2H5 + H2"; A 115000; beta 1.9; @@ -482,7 +482,7 @@ reactions } un-named-reaction-60 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HCCO = CH2(S) + CO"; A 1e+11; beta 0; @@ -490,7 +490,7 @@ reactions } un-named-reaction-61 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2CO = HCCO + H2"; A 5e+10; beta 0; @@ -498,7 +498,7 @@ reactions } un-named-reaction-62 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2CO = CH3 + CO"; A 1.13e+10; beta 0; @@ -506,7 +506,7 @@ reactions } un-named-reaction-63 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + HCCOH = H + CH2CO"; A 1e+10; beta 0; @@ -514,7 +514,7 @@ reactions } un-named-reaction-64 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + H2 = H + H2O"; A 216000; beta 1.51; @@ -522,7 +522,7 @@ reactions } un-named-reaction-65 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2OH = O + H2O"; A 35.7; beta 2.4; @@ -530,7 +530,7 @@ reactions } un-named-reaction-66 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + HO2 = O2 + H2O"; A 1.45e+10; beta 0; @@ -538,7 +538,7 @@ reactions } un-named-reaction-67 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + H2O2 = HO2 + H2O"; A 2e+09; beta 0; @@ -546,7 +546,7 @@ reactions } un-named-reaction-68 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + H2O2 = HO2 + H2O"; A 1.7e+15; beta 0; @@ -554,7 +554,7 @@ reactions } un-named-reaction-69 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C = H + CO"; A 5e+10; beta 0; @@ -562,7 +562,7 @@ reactions } un-named-reaction-70 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH = H + HCO"; A 3e+10; beta 0; @@ -570,7 +570,7 @@ reactions } un-named-reaction-71 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2 = H + CH2O"; A 2e+10; beta 0; @@ -578,7 +578,7 @@ reactions } un-named-reaction-72 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2 = CH + H2O"; A 11300; beta 2; @@ -586,7 +586,7 @@ reactions } un-named-reaction-73 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2(S) = H + CH2O"; A 3e+10; beta 0; @@ -594,7 +594,7 @@ reactions } un-named-reaction-74 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3 = CH2 + H2O"; A 56000; beta 1.6; @@ -602,7 +602,7 @@ reactions } un-named-reaction-75 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3 = CH2(S) + H2O"; A 6.44e+14; beta -1.34; @@ -610,7 +610,7 @@ reactions } un-named-reaction-76 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH4 = CH3 + H2O"; A 100000; beta 1.6; @@ -618,7 +618,7 @@ reactions } un-named-reaction-77 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CO = H + CO2"; A 47600; beta 1.228; @@ -626,7 +626,7 @@ reactions } un-named-reaction-78 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + HCO = H2O + CO"; A 5e+10; beta 0; @@ -634,7 +634,7 @@ reactions } un-named-reaction-79 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2O = HCO + H2O"; A 3.43e+06; beta 1.18; @@ -642,7 +642,7 @@ reactions } un-named-reaction-80 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2OH = H2O + CH2O"; A 5e+09; beta 0; @@ -650,7 +650,7 @@ reactions } un-named-reaction-81 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3O = H2O + CH2O"; A 5e+09; beta 0; @@ -658,7 +658,7 @@ reactions } un-named-reaction-82 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3OH = CH2OH + H2O"; A 1440; beta 2; @@ -666,7 +666,7 @@ reactions } un-named-reaction-83 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH3OH = CH3O + H2O"; A 6300; beta 2; @@ -674,7 +674,7 @@ reactions } un-named-reaction-84 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H = H + HCCO"; A 2e+10; beta 0; @@ -682,7 +682,7 @@ reactions } un-named-reaction-85 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H2 = H + CH2CO"; A 2.18e-07; beta 4.5; @@ -690,7 +690,7 @@ reactions } un-named-reaction-86 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H2 = H + HCCOH"; A 504; beta 2.3; @@ -698,7 +698,7 @@ reactions } un-named-reaction-87 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H2 = C2H + H2O"; A 33700; beta 2; @@ -706,7 +706,7 @@ reactions } un-named-reaction-88 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H2 = CH3 + CO"; A 4.83e-07; beta 4; @@ -714,7 +714,7 @@ reactions } un-named-reaction-89 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H3 = H2O + C2H2"; A 5e+09; beta 0; @@ -722,7 +722,7 @@ reactions } un-named-reaction-90 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H4 = C2H3 + H2O"; A 3600; beta 2; @@ -730,7 +730,7 @@ reactions } un-named-reaction-91 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C2H6 = C2H5 + H2O"; A 3540; beta 2.12; @@ -738,7 +738,7 @@ reactions } un-named-reaction-92 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2CO = HCCO + H2O"; A 7.5e+09; beta 0; @@ -746,7 +746,7 @@ reactions } un-named-reaction-93 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2HO2 = O2 + H2O2"; A 1.3e+08; beta 0; @@ -754,7 +754,7 @@ reactions } un-named-reaction-94 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2HO2 = O2 + H2O2"; A 4.2e+11; beta 0; @@ -762,7 +762,7 @@ reactions } un-named-reaction-95 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CH2 = OH + CH2O"; A 2e+10; beta 0; @@ -770,7 +770,7 @@ reactions } un-named-reaction-96 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CH3 = O2 + CH4"; A 1e+09; beta 0; @@ -778,7 +778,7 @@ reactions } un-named-reaction-97 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CH3 = OH + CH3O"; A 3.78e+10; beta 0; @@ -786,7 +786,7 @@ reactions } un-named-reaction-98 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CO = OH + CO2"; A 1.5e+11; beta 0; @@ -794,7 +794,7 @@ reactions } un-named-reaction-99 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + CH2O = HCO + H2O2"; A 5600; beta 2; @@ -802,7 +802,7 @@ reactions } un-named-reaction-100 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C + O2 = O + CO"; A 5.8e+10; beta 0; @@ -810,7 +810,7 @@ reactions } un-named-reaction-101 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C + CH2 = H + C2H"; A 5e+10; beta 0; @@ -818,7 +818,7 @@ reactions } un-named-reaction-102 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C + CH3 = H + C2H2"; A 5e+10; beta 0; @@ -826,7 +826,7 @@ reactions } un-named-reaction-103 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + O2 = O + HCO"; A 6.71e+10; beta 0; @@ -834,7 +834,7 @@ reactions } un-named-reaction-104 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + H2 = H + CH2"; A 1.08e+11; beta 0; @@ -842,7 +842,7 @@ reactions } un-named-reaction-105 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + H2O = H + CH2O"; A 5.71e+09; beta 0; @@ -850,7 +850,7 @@ reactions } un-named-reaction-106 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CH2 = H + C2H2"; A 4e+10; beta 0; @@ -858,7 +858,7 @@ reactions } un-named-reaction-107 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CH3 = H + C2H3"; A 3e+10; beta 0; @@ -866,7 +866,7 @@ reactions } un-named-reaction-108 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CH4 = H + C2H4"; A 6e+10; beta 0; @@ -874,7 +874,7 @@ reactions } un-named-reaction-109 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CO2 = HCO + CO"; A 1.9e+11; beta 0; @@ -882,7 +882,7 @@ reactions } un-named-reaction-110 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + CH2O = H + CH2CO"; A 9.46e+10; beta 0; @@ -890,7 +890,7 @@ reactions } un-named-reaction-111 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + HCCO = CO + C2H2"; A 5e+10; beta 0; @@ -898,7 +898,7 @@ reactions } un-named-reaction-112 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH2 + O2 = OH + H + CO"; A 5e+09; beta 0; @@ -906,7 +906,7 @@ reactions } un-named-reaction-113 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + H2 = H + CH3"; A 500; beta 2; @@ -914,7 +914,7 @@ reactions } un-named-reaction-114 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2CH2 = H2 + C2H2"; A 1.6e+12; beta 0; @@ -922,7 +922,7 @@ reactions } un-named-reaction-115 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + CH3 = H + C2H4"; A 4e+10; beta 0; @@ -930,7 +930,7 @@ reactions } un-named-reaction-116 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + CH4 = 2CH3"; A 2460; beta 2; @@ -938,7 +938,7 @@ reactions } un-named-reaction-117 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + HCCO = C2H3 + CO"; A 3e+10; beta 0; @@ -946,7 +946,7 @@ reactions } un-named-reaction-118 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + N2 = CH2 + N2"; A 1.5e+10; beta 0; @@ -954,7 +954,7 @@ reactions } un-named-reaction-119 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + AR = CH2 + AR"; A 9e+09; beta 0; @@ -962,7 +962,7 @@ reactions } un-named-reaction-120 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + O2 = H + OH + CO"; A 2.8e+10; beta 0; @@ -970,7 +970,7 @@ reactions } un-named-reaction-121 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + O2 = CO + H2O"; A 1.2e+10; beta 0; @@ -978,7 +978,7 @@ reactions } un-named-reaction-122 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + H2 = CH3 + H"; A 7e+10; beta 0; @@ -986,7 +986,7 @@ reactions } un-named-reaction-123 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + H2O = CH2 + H2O"; A 3e+10; beta 0; @@ -994,7 +994,7 @@ reactions } un-named-reaction-124 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CH3 = H + C2H4"; A 1.2e+10; beta 0; @@ -1002,7 +1002,7 @@ reactions } un-named-reaction-125 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CH4 = 2CH3"; A 1.6e+10; beta 0; @@ -1010,7 +1010,7 @@ reactions } un-named-reaction-126 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CO = CH2 + CO"; A 9e+09; beta 0; @@ -1018,7 +1018,7 @@ reactions } un-named-reaction-127 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CO2 = CH2 + CO2"; A 7e+09; beta 0; @@ -1026,7 +1026,7 @@ reactions } un-named-reaction-128 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + CO2 = CO + CH2O"; A 1.4e+10; beta 0; @@ -1034,7 +1034,7 @@ reactions } un-named-reaction-129 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + C2H6 = CH3 + C2H5"; A 4e+10; beta 0; @@ -1042,7 +1042,7 @@ reactions } un-named-reaction-130 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + O2 = O + CH3O"; A 3.56e+10; beta 0; @@ -1050,7 +1050,7 @@ reactions } un-named-reaction-131 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + O2 = OH + CH2O"; A 2.31e+09; beta 0; @@ -1058,7 +1058,7 @@ reactions } un-named-reaction-132 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + H2O2 = HO2 + CH4"; A 24.5; beta 2.47; @@ -1066,7 +1066,7 @@ reactions } un-named-reaction-133 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2CH3 = H + C2H5"; A 6.84e+09; beta 0.1; @@ -1074,7 +1074,7 @@ reactions } un-named-reaction-134 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + HCO = CH4 + CO"; A 2.648e+10; beta 0; @@ -1082,7 +1082,7 @@ reactions } un-named-reaction-135 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + CH2O = HCO + CH4"; A 3.32; beta 2.81; @@ -1090,7 +1090,7 @@ reactions } un-named-reaction-136 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + CH3OH = CH2OH + CH4"; A 30000; beta 1.5; @@ -1098,7 +1098,7 @@ reactions } un-named-reaction-137 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + CH3OH = CH3O + CH4"; A 10000; beta 1.5; @@ -1106,7 +1106,7 @@ reactions } un-named-reaction-138 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + C2H4 = C2H3 + CH4"; A 227; beta 2; @@ -1114,7 +1114,7 @@ reactions } un-named-reaction-139 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + C2H6 = C2H5 + CH4"; A 6140; beta 1.74; @@ -1122,7 +1122,7 @@ reactions } un-named-reaction-140 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCO + H2O = H + CO + H2O"; A 1.5e+15; beta -1; @@ -1130,7 +1130,7 @@ reactions } un-named-reaction-141 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCO + O2 = HO2 + CO"; A 1.345e+10; beta 0; @@ -1138,7 +1138,7 @@ reactions } un-named-reaction-142 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2OH + O2 = HO2 + CH2O"; A 1.8e+10; beta 0; @@ -1146,7 +1146,7 @@ reactions } un-named-reaction-143 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3O + O2 = HO2 + CH2O"; A 4.28e-16; beta 7.6; @@ -1154,7 +1154,7 @@ reactions } un-named-reaction-144 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H + O2 = HCO + CO"; A 1e+10; beta 0; @@ -1162,7 +1162,7 @@ reactions } un-named-reaction-145 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H + H2 = H + C2H2"; A 5.68e+07; beta 0.9; @@ -1170,7 +1170,7 @@ reactions } un-named-reaction-146 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H3 + O2 = HCO + CH2O"; A 4.58e+13; beta -1.39; @@ -1178,7 +1178,7 @@ reactions } un-named-reaction-147 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H5 + O2 = HO2 + C2H4"; A 8.4e+08; beta 0; @@ -1186,7 +1186,7 @@ reactions } un-named-reaction-148 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCCO + O2 = OH + 2CO"; A 3.2e+09; beta 0; @@ -1194,7 +1194,7 @@ reactions } un-named-reaction-149 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "2HCCO = 2CO + C2H2"; A 1e+10; beta 0; @@ -1202,7 +1202,7 @@ reactions } un-named-reaction-150 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "N + NO = N2 + O"; A 2.7e+10; beta 0; @@ -1210,7 +1210,7 @@ reactions } un-named-reaction-151 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "N + O2 = NO + O"; A 9e+06; beta 1; @@ -1218,7 +1218,7 @@ reactions } un-named-reaction-152 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "N + OH = NO + H"; A 3.36e+10; beta 0; @@ -1226,7 +1226,7 @@ reactions } un-named-reaction-153 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "N2O + O = N2 + O2"; A 1.4e+09; beta 0; @@ -1234,7 +1234,7 @@ reactions } un-named-reaction-154 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "N2O + O = 2NO"; A 2.9e+10; beta 0; @@ -1242,7 +1242,7 @@ reactions } un-named-reaction-155 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "N2O + H = N2 + OH"; A 3.87e+11; beta 0; @@ -1250,7 +1250,7 @@ reactions } un-named-reaction-156 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "N2O + OH = N2 + HO2"; A 2e+09; beta 0; @@ -1258,7 +1258,7 @@ reactions } un-named-reaction-157 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + NO = NO2 + OH"; A 2.11e+09; beta 0; @@ -1266,7 +1266,7 @@ reactions } un-named-reaction-158 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NO2 + O = NO + O2"; A 3.9e+09; beta 0; @@ -1274,7 +1274,7 @@ reactions } un-named-reaction-159 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NO2 + H = NO + OH"; A 1.32e+11; beta 0; @@ -1282,7 +1282,7 @@ reactions } un-named-reaction-160 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + O = NO + H"; A 4e+10; beta 0; @@ -1290,7 +1290,7 @@ reactions } un-named-reaction-161 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + H = N + H2"; A 3.2e+10; beta 0; @@ -1298,7 +1298,7 @@ reactions } un-named-reaction-162 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + OH = HNO + H"; A 2e+10; beta 0; @@ -1306,7 +1306,7 @@ reactions } un-named-reaction-163 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + OH = N + H2O"; A 2e+06; beta 1.2; @@ -1314,7 +1314,7 @@ reactions } un-named-reaction-164 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + O2 = HNO + O"; A 461; beta 2; @@ -1322,7 +1322,7 @@ reactions } un-named-reaction-165 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + O2 = NO + OH"; A 1280; beta 1.5; @@ -1330,7 +1330,7 @@ reactions } un-named-reaction-166 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + N = N2 + H"; A 1.5e+10; beta 0; @@ -1338,7 +1338,7 @@ reactions } un-named-reaction-167 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + H2O = HNO + H2"; A 2e+10; beta 0; @@ -1346,7 +1346,7 @@ reactions } un-named-reaction-168 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + NO = N2 + OH"; A 2.16e+10; beta -0.23; @@ -1354,7 +1354,7 @@ reactions } un-named-reaction-169 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + NO = N2O + H"; A 3.65e+11; beta -0.45; @@ -1362,7 +1362,7 @@ reactions } un-named-reaction-170 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH2 + O = OH + NH"; A 3e+09; beta 0; @@ -1370,7 +1370,7 @@ reactions } un-named-reaction-171 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH2 + O = H + HNO"; A 3.9e+10; beta 0; @@ -1378,7 +1378,7 @@ reactions } un-named-reaction-172 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH2 + H = NH + H2"; A 4e+10; beta 0; @@ -1386,7 +1386,7 @@ reactions } un-named-reaction-173 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH2 + OH = NH + H2O"; A 90000; beta 1.5; @@ -1394,7 +1394,7 @@ reactions } un-named-reaction-174 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NNH = N2 + H"; A 3.3e+08; beta 0; @@ -1402,7 +1402,7 @@ reactions } un-named-reaction-175 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NNH + O2 = HO2 + N2"; A 5e+09; beta 0; @@ -1410,7 +1410,7 @@ reactions } un-named-reaction-176 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NNH + O = OH + N2"; A 2.5e+10; beta 0; @@ -1418,7 +1418,7 @@ reactions } un-named-reaction-177 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NNH + O = NH + NO"; A 7e+10; beta 0; @@ -1426,7 +1426,7 @@ reactions } un-named-reaction-178 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NNH + H = H2 + N2"; A 5e+10; beta 0; @@ -1434,7 +1434,7 @@ reactions } un-named-reaction-179 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NNH + OH = H2O + N2"; A 2e+10; beta 0; @@ -1442,7 +1442,7 @@ reactions } un-named-reaction-180 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NNH + CH3 = CH4 + N2"; A 2.5e+10; beta 0; @@ -1450,7 +1450,7 @@ reactions } un-named-reaction-181 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNO + O = NO + OH"; A 2.5e+10; beta 0; @@ -1458,7 +1458,7 @@ reactions } un-named-reaction-182 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNO + H = H2 + NO"; A 9e+08; beta 0.72; @@ -1466,7 +1466,7 @@ reactions } un-named-reaction-183 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNO + OH = NO + H2O"; A 13000; beta 1.9; @@ -1474,7 +1474,7 @@ reactions } un-named-reaction-184 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNO + O2 = HO2 + NO"; A 1e+10; beta 0; @@ -1482,7 +1482,7 @@ reactions } un-named-reaction-185 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CN + O = CO + N"; A 7.7e+10; beta 0; @@ -1490,7 +1490,7 @@ reactions } un-named-reaction-186 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CN + OH = NCO + H"; A 4e+10; beta 0; @@ -1498,7 +1498,7 @@ reactions } un-named-reaction-187 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CN + H2O = HCN + OH"; A 8e+09; beta 0; @@ -1506,7 +1506,7 @@ reactions } un-named-reaction-188 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CN + O2 = NCO + O"; A 6.14e+09; beta 0; @@ -1514,7 +1514,7 @@ reactions } un-named-reaction-189 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CN + H2 = HCN + H"; A 295; beta 2.45; @@ -1522,7 +1522,7 @@ reactions } un-named-reaction-190 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NCO + O = NO + CO"; A 2.35e+10; beta 0; @@ -1530,7 +1530,7 @@ reactions } un-named-reaction-191 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NCO + H = NH + CO"; A 5.4e+10; beta 0; @@ -1538,7 +1538,7 @@ reactions } un-named-reaction-192 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NCO + OH = NO + H + CO"; A 2.5e+09; beta 0; @@ -1546,7 +1546,7 @@ reactions } un-named-reaction-193 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NCO + N = N2 + CO"; A 2e+10; beta 0; @@ -1554,7 +1554,7 @@ reactions } un-named-reaction-194 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NCO + O2 = NO + CO2"; A 2e+09; beta 0; @@ -1562,7 +1562,7 @@ reactions } un-named-reaction-195 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NCO + NO = N2O + CO"; A 1.9e+14; beta -1.52; @@ -1570,7 +1570,7 @@ reactions } un-named-reaction-196 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NCO + NO = N2 + CO2"; A 3.8e+15; beta -2; @@ -1578,7 +1578,7 @@ reactions } un-named-reaction-197 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCN + O = NCO + H"; A 20.3; beta 2.64; @@ -1586,7 +1586,7 @@ reactions } un-named-reaction-198 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCN + O = NH + CO"; A 5.07; beta 2.64; @@ -1594,7 +1594,7 @@ reactions } un-named-reaction-199 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCN + O = CN + OH"; A 3.91e+06; beta 1.58; @@ -1602,7 +1602,7 @@ reactions } un-named-reaction-200 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCN + OH = HOCN + H"; A 1100; beta 2.03; @@ -1610,7 +1610,7 @@ reactions } un-named-reaction-201 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCN + OH = HNCO + H"; A 4.4; beta 2.26; @@ -1618,7 +1618,7 @@ reactions } un-named-reaction-202 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCN + OH = NH2 + CO"; A 0.16; beta 2.56; @@ -1626,7 +1626,7 @@ reactions } un-named-reaction-203 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H2CN + N = N2 + CH2"; A 6e+10; beta 0; @@ -1634,7 +1634,7 @@ reactions } un-named-reaction-204 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C + N2 = CN + N"; A 6.3e+10; beta 0; @@ -1642,7 +1642,7 @@ reactions } un-named-reaction-205 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + N2 = HCN + N"; A 3.12e+06; beta 0.88; @@ -1650,7 +1650,7 @@ reactions } un-named-reaction-206 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + N2 = HCN + NH"; A 1e+10; beta 0; @@ -1658,7 +1658,7 @@ reactions } un-named-reaction-207 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + N2 = NH + HCN"; A 1e+08; beta 0; @@ -1666,7 +1666,7 @@ reactions } un-named-reaction-208 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C + NO = CN + O"; A 1.9e+10; beta 0; @@ -1674,7 +1674,7 @@ reactions } un-named-reaction-209 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C + NO = CO + N"; A 2.9e+10; beta 0; @@ -1682,7 +1682,7 @@ reactions } un-named-reaction-210 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + NO = HCN + O"; A 4.1e+10; beta 0; @@ -1690,7 +1690,7 @@ reactions } un-named-reaction-211 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + NO = H + NCO"; A 1.62e+10; beta 0; @@ -1698,7 +1698,7 @@ reactions } un-named-reaction-212 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH + NO = N + HCO"; A 2.46e+10; beta 0; @@ -1706,7 +1706,7 @@ reactions } un-named-reaction-213 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + NO = H + HNCO"; A 3.1e+14; beta -1.38; @@ -1714,7 +1714,7 @@ reactions } un-named-reaction-214 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + NO = OH + HCN"; A 2.9e+11; beta -0.69; @@ -1722,7 +1722,7 @@ reactions } un-named-reaction-215 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + NO = H + HCNO"; A 3.8e+10; beta -0.36; @@ -1730,7 +1730,7 @@ reactions } un-named-reaction-216 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + NO = H + HNCO"; A 3.1e+14; beta -1.38; @@ -1738,7 +1738,7 @@ reactions } un-named-reaction-217 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + NO = OH + HCN"; A 2.9e+11; beta -0.69; @@ -1746,7 +1746,7 @@ reactions } un-named-reaction-218 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2(S) + NO = H + HCNO"; A 3.8e+10; beta -0.36; @@ -1754,7 +1754,7 @@ reactions } un-named-reaction-219 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + NO = HCN + H2O"; A 9.6e+10; beta 0; @@ -1762,7 +1762,7 @@ reactions } un-named-reaction-220 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + NO = H2CN + OH"; A 1e+09; beta 0; @@ -1770,7 +1770,7 @@ reactions } un-named-reaction-221 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCNN + O = CO + H + N2"; A 2.2e+10; beta 0; @@ -1778,7 +1778,7 @@ reactions } un-named-reaction-222 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCNN + O = HCN + NO"; A 2e+09; beta 0; @@ -1786,7 +1786,7 @@ reactions } un-named-reaction-223 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCNN + O2 = O + HCO + N2"; A 1.2e+10; beta 0; @@ -1794,7 +1794,7 @@ reactions } un-named-reaction-224 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCNN + OH = H + HCO + N2"; A 1.2e+10; beta 0; @@ -1802,7 +1802,7 @@ reactions } un-named-reaction-225 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCNN + H = CH2 + N2"; A 1e+11; beta 0; @@ -1810,7 +1810,7 @@ reactions } un-named-reaction-226 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNCO + O = NH + CO2"; A 98000; beta 1.41; @@ -1818,7 +1818,7 @@ reactions } un-named-reaction-227 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNCO + O = HNO + CO"; A 150000; beta 1.57; @@ -1826,7 +1826,7 @@ reactions } un-named-reaction-228 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNCO + O = NCO + OH"; A 2200; beta 2.11; @@ -1834,7 +1834,7 @@ reactions } un-named-reaction-229 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNCO + H = NH2 + CO"; A 22500; beta 1.7; @@ -1842,7 +1842,7 @@ reactions } un-named-reaction-230 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNCO + H = H2 + NCO"; A 105; beta 2.5; @@ -1850,7 +1850,7 @@ reactions } un-named-reaction-231 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNCO + OH = NCO + H2O"; A 33000; beta 1.5; @@ -1858,7 +1858,7 @@ reactions } un-named-reaction-232 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HNCO + OH = NH2 + CO2"; A 3300; beta 1.5; @@ -1866,7 +1866,7 @@ reactions } un-named-reaction-233 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCNO + H = H + HNCO"; A 2.1e+12; beta -0.69; @@ -1874,7 +1874,7 @@ reactions } un-named-reaction-234 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCNO + H = OH + HCN"; A 2.7e+08; beta 0.18; @@ -1882,7 +1882,7 @@ reactions } un-named-reaction-235 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCNO + H = NH2 + CO"; A 1.7e+11; beta -0.75; @@ -1890,7 +1890,7 @@ reactions } un-named-reaction-236 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HOCN + H = H + HNCO"; A 20000; beta 2; @@ -1898,7 +1898,7 @@ reactions } un-named-reaction-237 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HCCO + NO = HCNO + CO"; A 9e+09; beta 0; @@ -1906,7 +1906,7 @@ reactions } un-named-reaction-238 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + N = H2CN + H"; A 6.1e+11; beta -0.31; @@ -1914,7 +1914,7 @@ reactions } un-named-reaction-239 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + N = HCN + H2"; A 3.7e+09; beta 0.15; @@ -1922,7 +1922,7 @@ reactions } un-named-reaction-240 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH3 + H = NH2 + H2"; A 540; beta 2.4; @@ -1930,7 +1930,7 @@ reactions } un-named-reaction-241 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH3 + OH = NH2 + H2O"; A 50000; beta 1.6; @@ -1938,7 +1938,7 @@ reactions } un-named-reaction-242 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH3 + O = NH2 + OH"; A 9400; beta 1.94; @@ -1946,7 +1946,7 @@ reactions } un-named-reaction-243 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NH + CO2 = HNO + CO"; A 1e+10; beta 0; @@ -1954,7 +1954,7 @@ reactions } un-named-reaction-244 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CN + NO2 = NCO + NO"; A 6.16e+12; beta -0.752; @@ -1962,7 +1962,7 @@ reactions } un-named-reaction-245 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "NCO + NO2 = N2O + CO2"; A 3.25e+09; beta 0; @@ -1970,7 +1970,7 @@ reactions } un-named-reaction-246 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "N + CO2 = NO + CO"; A 3e+09; beta 0; @@ -1978,7 +1978,7 @@ reactions } un-named-reaction-247 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O + CH3 = H + H2 + CO"; A 3.37e+10; beta 0; @@ -1986,7 +1986,7 @@ reactions } un-named-reaction-248 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H4 = H + CH2CHO"; A 6700; beta 1.83; @@ -1994,7 +1994,7 @@ reactions } un-named-reaction-249 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C2H5 = H + CH3CHO"; A 1.096e+11; beta 0; @@ -2002,7 +2002,7 @@ reactions } un-named-reaction-250 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + HO2 = O2 + H2O"; A 5e+12; beta 0; @@ -2010,7 +2010,7 @@ reactions } un-named-reaction-251 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "OH + CH3 = H2 + CH2O"; A 8e+06; beta 0.5; @@ -2018,7 +2018,7 @@ reactions } un-named-reaction-252 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH2 + O2 = 2H + CO2"; A 5.8e+09; beta 0; @@ -2026,7 +2026,7 @@ reactions } un-named-reaction-253 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH2 + O2 = O + CH2O"; A 2.4e+09; beta 0; @@ -2034,7 +2034,7 @@ reactions } un-named-reaction-254 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH2 + CH2 = 2H + C2H2"; A 2e+11; beta 0; @@ -2042,7 +2042,7 @@ reactions } un-named-reaction-255 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH2(S) + H2O = H2 + CH2O"; A 6.82e+07; beta 0.25; @@ -2050,7 +2050,7 @@ reactions } un-named-reaction-256 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H3 + O2 = O + CH2CHO"; A 3.03e+08; beta 0.29; @@ -2058,7 +2058,7 @@ reactions } un-named-reaction-257 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C2H3 + O2 = HO2 + C2H2"; A 1337; beta 1.61; @@ -2066,7 +2066,7 @@ reactions } un-named-reaction-258 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + CH3CHO = OH + CH2CHO"; A 2.92e+09; beta 0; @@ -2074,7 +2074,7 @@ reactions } un-named-reaction-259 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O + CH3CHO = OH + CH3 + CO"; A 2.92e+09; beta 0; @@ -2082,7 +2082,7 @@ reactions } un-named-reaction-260 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O2 + CH3CHO = HO2 + CH3 + CO"; A 3.01e+10; beta 0; @@ -2090,7 +2090,7 @@ reactions } un-named-reaction-261 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH3CHO = CH2CHO + H2"; A 2.05e+06; beta 1.16; @@ -2098,7 +2098,7 @@ reactions } un-named-reaction-262 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "H + CH3CHO = CH3 + H2 + CO"; A 2.05e+06; beta 1.16; @@ -2106,7 +2106,7 @@ reactions } un-named-reaction-263 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "OH + CH3CHO = CH3 + H2O + CO"; A 2.343e+07; beta 0.73; @@ -2114,7 +2114,7 @@ reactions } un-named-reaction-264 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "HO2 + CH3CHO = CH3 + H2O2 + CO"; A 3.01e+09; beta 0; @@ -2122,7 +2122,7 @@ reactions } un-named-reaction-265 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH3 + CH3CHO = CH3 + CH4 + CO"; A 2720; beta 1.77; @@ -2130,7 +2130,7 @@ reactions } un-named-reaction-266 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O + CH2CHO = H + CH2 + CO2"; A 1.5e+11; beta 0; @@ -2138,7 +2138,7 @@ reactions } un-named-reaction-267 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O2 + CH2CHO = OH + CO + CH2O"; A 1.81e+07; beta 0; @@ -2146,7 +2146,7 @@ reactions } un-named-reaction-268 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O2 + CH2CHO = OH + 2HCO"; A 2.35e+07; beta 0; @@ -2154,7 +2154,7 @@ reactions } un-named-reaction-269 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2CHO = CH3 + HCO"; A 2.2e+10; beta 0; @@ -2162,7 +2162,7 @@ reactions } un-named-reaction-270 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + CH2CHO = CH2CO + H2"; A 1.1e+10; beta 0; @@ -2170,7 +2170,7 @@ reactions } un-named-reaction-271 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2CHO = H2O + CH2CO"; A 1.2e+10; beta 0; @@ -2178,7 +2178,7 @@ reactions } un-named-reaction-272 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + CH2CHO = HCO + CH2OH"; A 3.01e+10; beta 0; @@ -2186,7 +2186,7 @@ reactions } un-named-reaction-273 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C3H8 = OH + C3H7"; A 193; beta 2.68; @@ -2194,7 +2194,7 @@ reactions } un-named-reaction-274 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C3H8 = C3H7 + H2"; A 1320; beta 2.54; @@ -2202,7 +2202,7 @@ reactions } un-named-reaction-275 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C3H8 = C3H7 + H2O"; A 31600; beta 1.8; @@ -2210,7 +2210,7 @@ reactions } un-named-reaction-276 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "C3H7 + H2O2 = HO2 + C3H8"; A 0.378; beta 2.72; @@ -2218,7 +2218,7 @@ reactions } un-named-reaction-277 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + C3H8 = C3H7 + CH4"; A 0.000903; beta 3.65; @@ -2226,7 +2226,7 @@ reactions } un-named-reaction-278 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "O + C3H7 = C2H5 + CH2O"; A 9.64e+10; beta 0; @@ -2234,7 +2234,7 @@ reactions } un-named-reaction-279 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "H + C3H7 = CH3 + C2H5"; A 4060; beta 2.19; @@ -2242,7 +2242,7 @@ reactions } un-named-reaction-280 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "OH + C3H7 = C2H5 + CH2OH"; A 2.41e+10; beta 0; @@ -2250,7 +2250,7 @@ reactions } un-named-reaction-281 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "HO2 + C3H7 = O2 + C3H8"; A 2.55e+07; beta 0.255; @@ -2258,7 +2258,7 @@ reactions } un-named-reaction-282 { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "HO2 + C3H7 = OH + C2H5 + CH2O"; A 2.41e+10; beta 0; @@ -2266,7 +2266,7 @@ reactions } un-named-reaction-283 { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CH3 + C3H7 = 2C2H5"; A 1.927e+10; beta -0.32; @@ -2274,7 +2274,7 @@ reactions } un-named-reaction-284 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "2O = O2"; A 1.2e+11; beta -1; @@ -2340,7 +2340,7 @@ reactions } un-named-reaction-285 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "O + H = OH"; A 5e+11; beta -1; @@ -2406,7 +2406,7 @@ reactions } un-named-reaction-286 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "H + O2 = HO2"; A 2.8e+12; beta -0.86; @@ -2472,7 +2472,7 @@ reactions } un-named-reaction-287 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "2H = H2"; A 1e+12; beta -1; @@ -2538,7 +2538,7 @@ reactions } un-named-reaction-288 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "H + OH = H2O"; A 2.2e+16; beta -2; @@ -2604,7 +2604,7 @@ reactions } un-named-reaction-289 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "HCO = H + CO"; A 1.87e+14; beta -1; @@ -2670,7 +2670,7 @@ reactions } un-named-reaction-290 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "NO + O = NO2"; A 1.06e+14; beta -1.41; @@ -2736,7 +2736,7 @@ reactions } un-named-reaction-291 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "NNH = N2 + H"; A 1.3e+11; beta -0.11; @@ -2802,7 +2802,7 @@ reactions } un-named-reaction-292 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "H + NO = HNO"; A 4.48e+13; beta -1.32; @@ -2868,7 +2868,7 @@ reactions } un-named-reaction-293 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "NCO = N + CO"; A 3.1e+11; beta 0; @@ -2934,7 +2934,7 @@ reactions } un-named-reaction-294 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "HCN = H + CN"; A 1.04e+26; beta -3.3; @@ -3000,7 +3000,7 @@ reactions } un-named-reaction-295 { - type reversibleThirdBodyArrheniusReaction; + type reversibleThirdBodyArrhenius; reaction "HNCO = NH + CO"; A 1.18e+13; beta 0; @@ -3066,7 +3066,7 @@ reactions } un-named-reaction-296 { - type reversibleArrheniusLindemannFallOffReaction; + type reversibleArrheniusLindemannFallOff; reaction "O + CO = CO2"; k0 { @@ -3147,7 +3147,7 @@ reactions } un-named-reaction-297 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2 = CH3"; k0 { @@ -3232,7 +3232,7 @@ reactions } un-named-reaction-298 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH3 = CH4"; k0 { @@ -3317,7 +3317,7 @@ reactions } un-named-reaction-299 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + HCO = CH2O"; k0 { @@ -3402,7 +3402,7 @@ reactions } un-named-reaction-300 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2O = CH2OH"; k0 { @@ -3487,7 +3487,7 @@ reactions } un-named-reaction-301 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2OH = CH3OH"; k0 { @@ -3572,7 +3572,7 @@ reactions } un-named-reaction-302 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH3O = CH3OH"; k0 { @@ -3657,7 +3657,7 @@ reactions } un-named-reaction-303 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H = C2H2"; k0 { @@ -3742,7 +3742,7 @@ reactions } un-named-reaction-304 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H2 = C2H3"; k0 { @@ -3827,7 +3827,7 @@ reactions } un-named-reaction-305 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H3 = C2H4"; k0 { @@ -3912,7 +3912,7 @@ reactions } un-named-reaction-306 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H4 = C2H5"; k0 { @@ -3997,7 +3997,7 @@ reactions } un-named-reaction-307 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C2H5 = C2H6"; k0 { @@ -4082,7 +4082,7 @@ reactions } un-named-reaction-308 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H2 + CO = CH2O"; k0 { @@ -4167,7 +4167,7 @@ reactions } un-named-reaction-309 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "2OH = H2O2"; k0 { @@ -4252,7 +4252,7 @@ reactions } un-named-reaction-310 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "OH + CH3 = CH3OH"; k0 { @@ -4337,7 +4337,7 @@ reactions } un-named-reaction-311 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH + CO = HCCO"; k0 { @@ -4422,7 +4422,7 @@ reactions } un-named-reaction-312 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH2 + CO = CH2CO"; k0 { @@ -4507,7 +4507,7 @@ reactions } un-named-reaction-313 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH2(S) + H2O = CH3OH"; k0 { @@ -4592,7 +4592,7 @@ reactions } un-named-reaction-314 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "2CH3 = C2H6"; k0 { @@ -4677,7 +4677,7 @@ reactions } un-named-reaction-315 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "C2H4 = H2 + C2H2"; k0 { @@ -4762,7 +4762,7 @@ reactions } un-named-reaction-316 { - type reversibleArrheniusLindemannFallOffReaction; + type reversibleArrheniusLindemannFallOff; reaction "N2O = N2 + O"; k0 { @@ -4843,7 +4843,7 @@ reactions } un-named-reaction-317 { - type reversibleArrheniusLindemannFallOffReaction; + type reversibleArrheniusLindemannFallOff; reaction "H + HCN = H2CN"; k0 { @@ -4924,7 +4924,7 @@ reactions } un-named-reaction-318 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH + N2 = HCNN"; k0 { @@ -5009,7 +5009,7 @@ reactions } un-named-reaction-319 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH + H2 = CH3"; k0 { @@ -5094,7 +5094,7 @@ reactions } un-named-reaction-320 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2CO = CH2CHO"; k0 { @@ -5179,7 +5179,7 @@ reactions } un-named-reaction-321 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH3 + C2H5 = C3H8"; k0 { @@ -5264,7 +5264,7 @@ reactions } un-named-reaction-322 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "CH3 + C2H4 = C3H7"; k0 { @@ -5349,7 +5349,7 @@ reactions } un-named-reaction-323 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + C3H7 = C3H8"; k0 { @@ -5434,7 +5434,7 @@ reactions } un-named-reaction-324 { - type reversibleArrheniusTroeFallOffReaction; + type reversibleArrheniusTroeFallOff; reaction "H + CH2O = CH3O"; k0 { diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/reactions b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/reactions index 1e3b7944ff..8e7b929cff 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/reactions +++ b/tutorials/heatTransfer/chtMultiRegionFoam/reverseBurner/constant/gas/reactions @@ -27,7 +27,7 @@ reactions { methaneReaction { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH4^0.2 + 2O2^1.3 = CO2 + 2H2O"; A 2.11873e+11; beta 0; diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/reactions b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/reactions index ea8dee4050..ba65eab185 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/reactions +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/reactions @@ -2,7 +2,7 @@ reactions { methaneReaction { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH4 + 2O2^1.0 = CO2 + 2H2O^1.0"; A 7e+06; beta 0; @@ -12,7 +12,7 @@ reactions } hydrogenReaction { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "H2 + 0.5O2^1.0 = H2O"; A 4.74342e+12; beta 0; diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/reactions b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/reactions index e7aff50ae8..028a2a8510 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/reactions +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/constant/reactions @@ -20,7 +20,7 @@ reactions { methaneReaction { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "CH4 + 2O2 = CO2 + 2H2O"; A 5.2e16; beta 0; diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumnEvaporatingReacting/constant/reactions.gas b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumnEvaporatingReacting/constant/reactions.gas index 6572121472..6d386d9041 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumnEvaporatingReacting/constant/reactions.gas +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumnEvaporatingReacting/constant/reactions.gas @@ -2,7 +2,7 @@ reactions { waterGasShift { - type reversibleArrheniusReaction; + type reversibleArrhenius; reaction "CO^0.93 + H2O^0.24 = CO2^0.69 + H2^1"; diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/titaniaSynthesis/constant/reactions.vapor b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/titaniaSynthesis/constant/reactions.vapor index c83e8dda91..ee0c9aa7de 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/titaniaSynthesis/constant/reactions.vapor +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/titaniaSynthesis/constant/reactions.vapor @@ -25,7 +25,7 @@ reactions { oxidation { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O2^0 + TiCl4 = TiO2 + 2Cl2"; diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/titaniaSynthesisSurface/constant/reactions.vapor b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/titaniaSynthesisSurface/constant/reactions.vapor index 5574fcd4e0..fa8e426bbb 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/titaniaSynthesisSurface/constant/reactions.vapor +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/titaniaSynthesisSurface/constant/reactions.vapor @@ -29,7 +29,7 @@ reactions { oxidation { - type irreversibleArrheniusReaction; + type irreversibleArrhenius; reaction "O2^0 + TiCl4 = TiO2 + 2Cl2"; @@ -40,7 +40,7 @@ reactions oxidationAtSurface { - type irreversibleSurfaceArrheniusReaction; + type irreversibleSurfaceArrhenius; reaction "O2^0 + TiCl4 = TiO2_s + 2Cl2";