initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / thermophysicalModels / specie / reaction / reactionRate / thirdBodyArrheniusReactionRate / thirdBodyArrheniusReactionRateI.H
blob5674ea2e446c026980ea70c0c3f6196b948eed1b
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 \*---------------------------------------------------------------------------*/
27 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
29 namespace Foam
32 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
34 // Construct from components
35 inline thirdBodyArrheniusReactionRate::thirdBodyArrheniusReactionRate
37     const scalar A,
38     const scalar beta,
39     const scalar Ta,
40     const thirdBodyEfficiencies& tbes
43     ArrheniusReactionRate(A, beta, Ta),
44     thirdBodyEfficiencies_(tbes)
48 //- Construct from Istream
49 inline thirdBodyArrheniusReactionRate::thirdBodyArrheniusReactionRate
51     const speciesTable& species,
52     Istream& is
55     ArrheniusReactionRate
56     (
57         species, 
58         is.readBegin("thirdBodyArrheniusReactionRate(Istream&)")
59     ),
60     thirdBodyEfficiencies_(species, is)
62     is.readEnd("thirdBodyArrheniusReactionRate(Istream&)");
66 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
68 inline scalar thirdBodyArrheniusReactionRate::operator()
70     const scalar T,
71     const scalar p,
72     const scalarField& c
73 ) const
75     return 
76         thirdBodyEfficiencies_.M(c)
77        *ArrheniusReactionRate::operator()(T, p, c);
81 inline Ostream& operator<<(Ostream& os, const thirdBodyArrheniusReactionRate& arr)
83     os  << token::BEGIN_LIST
84         << static_cast<const ArrheniusReactionRate&>(arr)
85         << token::SPACE << arr.thirdBodyEfficiencies_
86         << token::END_LIST;
87     return os;
91 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
93 } // End namespace Foam
95 // ************************************************************************* //