1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd.
7 -------------------------------------------------------------------------------
9 This file is part of OpenFOAM.
11 OpenFOAM is free software: you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by
13 the Free Software Foundation, either version 3 of the License, or
14 (at your option) any later version.
16 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 You should have received a copy of the GNU General Public License
22 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25 Foam::ArrheniusReactionRate
28 Arrhenius reaction rate given by:
30 k = A * T^beta * exp(-Ta/T)
33 ArrheniusReactionRateI.H
35 \*---------------------------------------------------------------------------*/
37 #ifndef ArrheniusReactionRate_H
38 #define ArrheniusReactionRate_H
40 #include "scalarField.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
48 /*---------------------------------------------------------------------------*\
49 Class ArrheniusReactionRate Declaration
50 \*---------------------------------------------------------------------------*/
52 class ArrheniusReactionRate
65 //- Construct from components
66 inline ArrheniusReactionRate
73 //- Construct from Istream
74 inline ArrheniusReactionRate
76 const speciesTable& species,
80 //- Construct from dictionary
81 inline ArrheniusReactionRate
83 const speciesTable& species,
84 const dictionary& dict
90 //- Return the type name
96 inline scalar operator()
104 inline void write(Ostream& os) const;
109 inline friend Ostream& operator<<
112 const ArrheniusReactionRate&
117 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
119 } // End namespace Foam
121 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
123 #include "ArrheniusReactionRateI.H"
125 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
129 // ************************************************************************* //