1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
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::solidArrheniusReactionRate
28 Arrhenius reaction rate for solids
31 solidArrheniusReactionRateI.H
33 \*---------------------------------------------------------------------------*/
35 #ifndef solidArrheniusReactionRate_H
36 #define solidArrheniusReactionRate_H
38 #include "scalarField.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 /*---------------------------------------------------------------------------*\
47 Class solidArrheniusReactionRate Declaration
48 \*---------------------------------------------------------------------------*/
50 class solidArrheniusReactionRate
63 //- Construct from components
64 inline solidArrheniusReactionRate
71 //- Construct from Istream
72 inline solidArrheniusReactionRate
74 const speciesTable& species,
81 //- Return the type name
84 return "SolidArrhenius";
87 inline scalar operator()
97 inline friend Ostream& operator<<
100 const solidArrheniusReactionRate&
105 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
107 } // End namespace Foam
109 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
111 #include "solidArrheniusReactionRateI.H"
113 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
117 // ************************************************************************* //