2010-05-12 13:27:55 +00:00
|
|
|
/*---------------------------------------------------------------------------*\
|
|
|
|
========= |
|
2013-12-11 16:09:41 +00:00
|
|
|
\\ / F ield | foam-extend: Open Source CFD
|
2015-05-17 13:32:07 +00:00
|
|
|
\\ / O peration | Version: 3.2
|
|
|
|
\\ / A nd | Web: http://www.foam-extend.org
|
|
|
|
\\/ M anipulation | For copyright notice see file Copyright
|
2010-05-12 13:27:55 +00:00
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
License
|
2013-12-11 16:09:41 +00:00
|
|
|
This file is part of foam-extend.
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2013-12-11 16:09:41 +00:00
|
|
|
foam-extend is free software: you can redistribute it and/or modify it
|
2010-05-12 13:27:55 +00:00
|
|
|
under the terms of the GNU General Public License as published by the
|
2013-12-11 16:09:41 +00:00
|
|
|
Free Software Foundation, either version 3 of the License, or (at your
|
2010-05-12 13:27:55 +00:00
|
|
|
option) any later version.
|
|
|
|
|
2013-12-11 16:09:41 +00:00
|
|
|
foam-extend 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.
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2013-12-11 16:09:41 +00:00
|
|
|
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
#include "algebraic.H"
|
|
|
|
#include "addToRunTimeSelectionTable.H"
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
namespace Foam
|
|
|
|
{
|
|
|
|
namespace XiModels
|
|
|
|
{
|
|
|
|
defineTypeNameAndDebug(algebraic, 0);
|
|
|
|
addToRunTimeSelectionTable(XiModel, algebraic, dictionary);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
Foam::XiModels::algebraic::algebraic
|
|
|
|
(
|
|
|
|
const dictionary& XiProperties,
|
|
|
|
const hhuCombustionThermo& thermo,
|
|
|
|
const compressible::RASModel& turbulence,
|
|
|
|
const volScalarField& Su,
|
|
|
|
const volScalarField& rho,
|
|
|
|
const volScalarField& b,
|
|
|
|
const surfaceScalarField& phi
|
|
|
|
)
|
|
|
|
:
|
|
|
|
XiModel(XiProperties, thermo, turbulence, Su, rho, b, phi),
|
|
|
|
XiShapeCoef(readScalar(XiModelCoeffs_.lookup("XiShapeCoef"))),
|
|
|
|
XiEqModel_(XiEqModel::New(XiProperties, thermo, turbulence, Su)),
|
|
|
|
XiGModel_(XiGModel::New(XiProperties, thermo, turbulence, Su))
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructors * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
Foam::XiModels::algebraic::~algebraic()
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
Foam::tmp<Foam::volScalarField> Foam::XiModels::algebraic::Db() const
|
|
|
|
{
|
|
|
|
return XiGModel_->Db();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Foam::XiModels::algebraic::correct()
|
|
|
|
{
|
|
|
|
volScalarField XiEqEta = XiEqModel_->XiEq();
|
|
|
|
volScalarField GEta = XiGModel_->G();
|
|
|
|
|
|
|
|
volScalarField R = GEta*XiEqEta/(XiEqEta - 0.999);
|
|
|
|
|
|
|
|
volScalarField XiEqStar = R/(R - GEta);
|
|
|
|
|
|
|
|
Xi_ == 1.0 + (1.0 + (2*XiShapeCoef)*(0.5 - b_))*(XiEqStar - 1.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool Foam::XiModels::algebraic::read(const dictionary& XiProperties)
|
|
|
|
{
|
|
|
|
XiModel::read(XiProperties);
|
|
|
|
|
|
|
|
XiModelCoeffs_.lookup("XiShapeCoef") >> XiShapeCoef;
|
2013-07-18 01:02:34 +00:00
|
|
|
|
2010-05-12 13:27:55 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ************************************************************************* //
|