Merge branch 'upstream/OpenFOAM' into master
[freefoam.git] / src / thermophysicalModels / specie / reaction / reactionRate / FallOffReactionRate / FallOffReactionRate.H
blobede06e05c48c2c72aff81dac8f60daffc1f7b286
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     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, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Class
26     Foam::FallOffReactionRate
28 Description
29     General class for handling unimolecular/recombination fall-off reactions.
31 SourceFiles
32     FallOffReactionRateI.H
34 \*---------------------------------------------------------------------------*/
36 #ifndef FallOffReactionRate_H
37 #define FallOffReactionRate_H
39 #include <specie/thirdBodyEfficiencies.H>
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 // Forward declaration of friend functions and operators
48 template<class ReactionRate, class FallOffFunction>
49 class FallOffReactionRate;
51 template<class ReactionRate, class FallOffFunction>
52 inline Ostream& operator<<
54     Ostream&,
55     const FallOffReactionRate<ReactionRate, FallOffFunction>&
59 /*---------------------------------------------------------------------------*\
60               Class FallOffReactionRate Declaration
61 \*---------------------------------------------------------------------------*/
63 template<class ReactionRate, class FallOffFunction>
64 class FallOffReactionRate
66     // Private data
68         ReactionRate k0_;
69         ReactionRate kInf_;
70         FallOffFunction F_;
71         thirdBodyEfficiencies thirdBodyEfficiencies_;
74 public:
76     // Constructors
78         //- Construct from components
79         inline FallOffReactionRate
80         (
81             const ReactionRate& k0,
82             const ReactionRate& kInf,
83             const FallOffFunction& F,
84             const thirdBodyEfficiencies& tbes
85         );
87         //- Construct from Istream
88         inline FallOffReactionRate
89         (
90             const speciesTable& species,
91             Istream& is
92         );
95     // Member Functions
97         //- Return the type name
98         static word type()
99         {
100             return ReactionRate::type() + FallOffFunction::type() + "FallOff";
101         }
103         inline scalar operator()
104         (
105             const scalar T,
106             const scalar p,
107             const scalarField& c
108         ) const;
111     // Ostream Operator
113         friend Ostream& operator<< <ReactionRate, FallOffFunction>
114         (
115             Ostream&,
116             const FallOffReactionRate<ReactionRate, FallOffFunction>&
117         );
121 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
123 } // End namespace Foam
125 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
127 #include <specie/FallOffReactionRateI.H>
129 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
131 #endif
133 // ************************ vim: set sw=4 sts=4 et: ************************ //