OpenFOAM logo
Open Source CFD Toolkit

thirdBodyArrheniusReactionRateI.H

Go to the documentation of this file.
00001 /*---------------------------------------------------------------------------*\
00002   =========                 |
00003   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
00004    \\    /   O peration     |
00005     \\  /    A nd           | Copyright (C) 1991-2005 OpenCFD Ltd.
00006      \\/     M anipulation  |
00007 -------------------------------------------------------------------------------
00008 License
00009     This file is part of OpenFOAM.
00010 
00011     OpenFOAM is free software; you can redistribute it and/or modify it
00012     under the terms of the GNU General Public License as published by the
00013     Free Software Foundation; either version 2 of the License, or (at your
00014     option) any later version.
00015 
00016     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
00017     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00018     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
00019     for more details.
00020 
00021     You should have received a copy of the GNU General Public License
00022     along with OpenFOAM; if not, write to the Free Software Foundation,
00023     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
00024 
00025 Description
00026     
00027 \*---------------------------------------------------------------------------*/
00028 
00029 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00030 
00031 namespace Foam
00032 {
00033 
00034 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
00035 
00036 // Construct from components
00037 inline thirdBodyArrheniusReactionRate::thirdBodyArrheniusReactionRate
00038 (
00039     const scalar A,
00040     const scalar beta,
00041     const scalar Ta,
00042     const thirdBodyEfficiencies& tbes
00043 )
00044 :
00045     ArrheniusReactionRate(A, beta, Ta),
00046     thirdBodyEfficiencies_(tbes)
00047 {}
00048 
00049 
00050 //- Construct from Istream
00051 inline thirdBodyArrheniusReactionRate::thirdBodyArrheniusReactionRate
00052 (
00053     const speciesTable& species,
00054     Istream& is
00055 )
00056 :
00057     ArrheniusReactionRate
00058     (
00059         species, 
00060         is.readBegin("thirdBodyArrheniusReactionRate(Istream&)")
00061     ),
00062     thirdBodyEfficiencies_(species, is)
00063 {
00064     is.readEnd("thirdBodyArrheniusReactionRate(Istream&)");
00065 }
00066 
00067 
00068 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
00069 
00070 inline scalar thirdBodyArrheniusReactionRate::operator()
00071 (
00072     const scalar T,
00073     const scalar p,
00074     const scalarField& c
00075 ) const
00076 {
00077     return 
00078         thirdBodyEfficiencies_.M(c)
00079        *ArrheniusReactionRate::operator()(T, p, c);
00080 }
00081 
00082 
00083 inline Ostream& operator<<(Ostream& os, const thirdBodyArrheniusReactionRate& arr)
00084 {
00085     os  << token::BEGIN_LIST
00086         << static_cast<const ArrheniusReactionRate&>(arr)
00087         << token::SPACE << arr.thirdBodyEfficiencies_
00088         << token::END_LIST;
00089     return os;
00090 }
00091 
00092 
00093 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00094 
00095 } // End namespace Foam
00096 
00097 // ************************************************************************* //
For further information go to www.openfoam.org