/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2015 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 .
\*---------------------------------------------------------------------------*/
#include "PaSR.H"
#include "fvmSup.H"
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
template
Foam::combustionModels::PaSR::PaSR
(
const word& modelType,
const fvMesh& mesh,
const word& phaseName
)
:
laminar(modelType, mesh, phaseName),
Cmix_(readScalar(this->coeffs().lookup("Cmix"))),
turbulentReaction_(this->coeffs().lookup("turbulentReaction")),
kappa_
(
IOobject
(
IOobject::groupName("PaSR:kappa", phaseName),
mesh.time().timeName(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE
),
mesh,
dimensionedScalar("kappa", dimless, 0.0)
)
{}
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
template
Foam::combustionModels::PaSR::~PaSR()
{}
// * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
template
void Foam::combustionModels::PaSR::correct()
{
if (this->active())
{
laminar::correct();
if (turbulentReaction_)
{
tmp tepsilon(this->turbulence().epsilon());
const volScalarField& epsilon = tepsilon();
tmp tmuEff(this->turbulence().muEff());
const volScalarField& muEff = tmuEff();
tmp ttc(this->tc());
const volScalarField& tc = ttc();
tmp trho(this->rho());
const volScalarField& rho = trho();
forAll(epsilon, i)
{
scalar tk =
Cmix_*sqrt(max(muEff[i]/rho[i]/(epsilon[i] + SMALL), 0));
if (tk > SMALL)
{
kappa_[i] = tc[i]/(tc[i] + tk);
}
else
{
kappa_[i] = 1.0;
}
}
}
else
{
kappa_ = 1.0;
}
}
}
template
Foam::tmp
Foam::combustionModels::PaSR::R(volScalarField& Y) const
{
return kappa_*laminar::R(Y);
}
template
Foam::tmp
Foam::combustionModels::PaSR::dQ() const
{
return tmp
(
new volScalarField
(
IOobject::groupName("PaSR:dQ", this->phaseName_),
kappa_*laminar::dQ()
)
);
}
template
Foam::tmp
Foam::combustionModels::PaSR::Sh() const
{
return tmp
(
new volScalarField
(
IOobject::groupName("PaSR:Sh", this->phaseName_),
kappa_*laminar::Sh()
)
);
}
template
bool Foam::combustionModels::PaSR::read()
{
if (laminar::read())
{
this->coeffs().lookup("Cmix") >> Cmix_;
this->coeffs().lookup("turbulentReaction") >> turbulentReaction_;
return true;
}
else
{
return false;
}
}
// ************************************************************************* //