108 lines
2.9 KiB
C++
108 lines
2.9 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "volFields.H"
|
|
#include "zeroGradientFvPatchFields.H"
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class CompType, class ThermoType>
|
|
inline Foam::PtrList<Foam::DimensionedField<Foam::scalar, Foam::volMesh>>&
|
|
Foam::chemistryModel<CompType, ThermoType>::RR()
|
|
{
|
|
return RR_;
|
|
}
|
|
|
|
|
|
template<class CompType, class ThermoType>
|
|
inline const Foam::PtrList<Foam::Reaction<ThermoType>>&
|
|
Foam::chemistryModel<CompType, ThermoType>::reactions() const
|
|
{
|
|
return reactions_;
|
|
}
|
|
|
|
|
|
template<class CompType, class ThermoType>
|
|
inline const Foam::PtrList<ThermoType>&
|
|
Foam::chemistryModel<CompType, ThermoType>::specieThermo() const
|
|
{
|
|
return specieThermo_;
|
|
}
|
|
|
|
|
|
template<class CompType, class ThermoType>
|
|
inline Foam::label
|
|
Foam::chemistryModel<CompType, ThermoType>::nSpecie() const
|
|
{
|
|
return nSpecie_;
|
|
}
|
|
|
|
|
|
template<class CompType, class ThermoType>
|
|
inline Foam::label
|
|
Foam::chemistryModel<CompType, ThermoType>::nReaction() const
|
|
{
|
|
return nReaction_;
|
|
}
|
|
|
|
|
|
template<class CompType, class ThermoType>
|
|
inline Foam::scalar
|
|
Foam::chemistryModel<CompType, ThermoType>::Treact() const
|
|
{
|
|
return Treact_;
|
|
}
|
|
|
|
|
|
template<class CompType, class ThermoType>
|
|
inline Foam::scalar&
|
|
Foam::chemistryModel<CompType, ThermoType>::Treact()
|
|
{
|
|
return Treact_;
|
|
}
|
|
|
|
|
|
template<class CompType, class ThermoType>
|
|
inline const Foam::DimensionedField<Foam::scalar, Foam::volMesh>&
|
|
Foam::chemistryModel<CompType, ThermoType>::RR
|
|
(
|
|
const label i
|
|
) const
|
|
{
|
|
return RR_[i];
|
|
}
|
|
|
|
template<class CompType, class ThermoType>
|
|
Foam::DimensionedField<Foam::scalar, Foam::volMesh>&
|
|
Foam::chemistryModel<CompType, ThermoType>::RR
|
|
(
|
|
const label i
|
|
)
|
|
{
|
|
return RR_[i];
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|