Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / thermophysicalModels / specie / reaction / reactionRate / ArrheniusReactionRate / ArrheniusReactionRate.H
blob4acedd0e0691ba6410b4ded7057a14cba2e75cce
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-2010 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
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
19     for more details.
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/>.
24 Class
25     Foam::ArrheniusReactionRate
27 Description
28     Arrhenius reaction rate given by:
30         k = A * T^beta * exp(-Ta/T)
32 SourceFiles
33     ArrheniusReactionRateI.H
35 \*---------------------------------------------------------------------------*/
37 #ifndef ArrheniusReactionRate_H
38 #define ArrheniusReactionRate_H
40 #include "scalarField.H"
41 #include "typeInfo.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 namespace Foam
48 /*---------------------------------------------------------------------------*\
49                     Class ArrheniusReactionRate Declaration
50 \*---------------------------------------------------------------------------*/
52 class ArrheniusReactionRate
54     // Private data
56         scalar A_;
57         scalar beta_;
58         scalar Ta_;
61 public:
63     // Constructors
65         //- Construct from components
66         inline ArrheniusReactionRate
67         (
68             const scalar A,
69             const scalar beta,
70             const scalar Ta
71         );
73         //- Construct from Istream
74         inline ArrheniusReactionRate
75         (
76             const speciesTable& species,
77             Istream& is
78         );
80         //- Construct from dictionary
81         inline ArrheniusReactionRate
82         (
83             const speciesTable& species,
84             const dictionary& dict
85         );
88     // Member Functions
90         //- Return the type name
91         static word type()
92         {
93             return "Arrhenius";
94         }
96         inline scalar operator()
97         (
98             const scalar T,
99             const scalar p,
100             const scalarField& c
101         ) const;
103         //- Write to stream
104         inline void write(Ostream& os) const;
107     // Ostream Operator
109         inline friend Ostream& operator<<
110         (
111             Ostream&,
112             const ArrheniusReactionRate&
113         );
117 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
119 } // End namespace Foam
121 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
123 #include "ArrheniusReactionRateI.H"
125 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
127 #endif
129 // ************************************************************************* //