initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / thermophysicalModels / specie / reaction / Reactions / NonEquilibriumReversibleReaction / NonEquilibriumReversibleReaction.C
blobfc639515bb3c0e0390be68f504cafe4c2ca7f9bd
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 Description
26     
27 \*---------------------------------------------------------------------------*/
29 #include "NonEquilibriumReversibleReaction.H"
31 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
33 namespace Foam
36 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
38 // Construct from components
39 template<class ReactionThermo, class ReactionRate>
40 NonEquilibriumReversibleReaction<ReactionThermo, ReactionRate>::
41 NonEquilibriumReversibleReaction
43     const Reaction<ReactionThermo>& reaction,
44     const ReactionRate& forwardReactionRate,
45     const ReactionRate& reverseReactionRate
48     Reaction<ReactionThermo>(reaction),
49     fk_(forwardReactionRate),
50     rk_(reverseReactionRate)
54 // Construct from components
55 template<class ReactionThermo, class ReactionRate>
56 NonEquilibriumReversibleReaction<ReactionThermo, ReactionRate>::
57 NonEquilibriumReversibleReaction
59     const speciesTable& species,
60     const HashPtrTable<ReactionThermo>& thermoDatabase,
61     Istream& is
64     Reaction<ReactionThermo>(species, thermoDatabase, is),
65     fk_(species, is),
66     rk_(species, is)
69 // Construct as copy given new speciesTable
70 template<class ReactionThermo, class ReactionRate>
71 NonEquilibriumReversibleReaction<ReactionThermo, ReactionRate>::
72 NonEquilibriumReversibleReaction
74     const NonEquilibriumReversibleReaction<ReactionThermo, ReactionRate>& nerr,
75     const speciesTable& species
78     Reaction<ReactionThermo>(nerr, species),
79     fk_(nerr.fk_),
80     rk_(nerr.rk_)
84 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
86 template<class ReactionThermo, class ReactionRate>
87 scalar NonEquilibriumReversibleReaction<ReactionThermo, ReactionRate>::kf
89     const scalar T,
90     const scalar p,
91     const scalarField& c
92 ) const
94     return fk_(T, p, c);
98 template<class ReactionThermo, class ReactionRate>
99 scalar NonEquilibriumReversibleReaction<ReactionThermo, ReactionRate>::kr
101     const scalar,
102     const scalar T,
103     const scalar p,
104     const scalarField& c
105 ) const
107     return rk_(T, p, c);
111 template<class ReactionThermo, class ReactionRate>
112 scalar NonEquilibriumReversibleReaction<ReactionThermo, ReactionRate>::kr
114     const scalar T,
115     const scalar p,
116     const scalarField& c
117 ) const
119     return rk_(T, p, c);
123 template<class ReactionThermo, class ReactionRate>
124 void NonEquilibriumReversibleReaction<ReactionThermo, ReactionRate>::write
126     Ostream& os
127 ) const
129     Reaction<ReactionThermo>::write(os);
130     os  << token::SPACE << fk_ << token::SPACE << rk_;
134 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
136 } // End namespace Foam
138 // ************************************************************************* //