2010-05-12 13:27:55 +00:00
|
|
|
/*---------------------------------------------------------------------------*\
|
|
|
|
========= |
|
2013-12-11 16:09:41 +00:00
|
|
|
\\ / F ield | foam-extend: Open Source CFD
|
2010-05-12 13:27:55 +00:00
|
|
|
\\ / O peration |
|
2013-12-11 16:09:41 +00:00
|
|
|
\\ / A nd | For copyright notice see file Copyright
|
2010-05-12 13:27:55 +00:00
|
|
|
\\/ M anipulation |
|
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
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 "mixedRhoEFvPatchScalarField.H"
|
|
|
|
#include "addToRunTimeSelectionTable.H"
|
|
|
|
#include "fvPatchFieldMapper.H"
|
|
|
|
#include "volFields.H"
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
namespace Foam
|
|
|
|
{
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
mixedRhoEFvPatchScalarField::mixedRhoEFvPatchScalarField
|
|
|
|
(
|
|
|
|
const fvPatch& p,
|
|
|
|
const DimensionedField<scalar, volMesh>& iF
|
|
|
|
)
|
|
|
|
:
|
|
|
|
mixedFvPatchScalarField(p, iF)
|
|
|
|
{
|
|
|
|
refValue() = 0.0;
|
|
|
|
refGrad() = 0.0;
|
|
|
|
valueFraction() = 0.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
mixedRhoEFvPatchScalarField::mixedRhoEFvPatchScalarField
|
|
|
|
(
|
|
|
|
const mixedRhoEFvPatchScalarField& ptf,
|
|
|
|
const fvPatch& p,
|
|
|
|
const DimensionedField<scalar, volMesh>& iF,
|
|
|
|
const fvPatchFieldMapper& mapper
|
|
|
|
)
|
|
|
|
:
|
|
|
|
mixedFvPatchScalarField(ptf, p, iF, mapper)
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
mixedRhoEFvPatchScalarField::mixedRhoEFvPatchScalarField
|
|
|
|
(
|
|
|
|
const fvPatch& p,
|
|
|
|
const DimensionedField<scalar, volMesh>& iF,
|
|
|
|
const dictionary& dict
|
|
|
|
)
|
|
|
|
:
|
|
|
|
mixedFvPatchScalarField(p, iF)
|
|
|
|
{
|
|
|
|
if (dict.found("value"))
|
|
|
|
{
|
|
|
|
fvPatchField<scalar>::operator=
|
|
|
|
(
|
|
|
|
scalarField("value", dict, p.size())
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fvPatchField<scalar>::operator=(patchInternalField());
|
|
|
|
}
|
|
|
|
|
|
|
|
refValue() = *this;
|
|
|
|
refGrad() = 0.0;
|
|
|
|
valueFraction() = 0.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
mixedRhoEFvPatchScalarField::mixedRhoEFvPatchScalarField
|
|
|
|
(
|
|
|
|
const mixedRhoEFvPatchScalarField& ptpsf
|
|
|
|
)
|
|
|
|
:
|
|
|
|
mixedFvPatchScalarField(ptpsf)
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
mixedRhoEFvPatchScalarField::mixedRhoEFvPatchScalarField
|
|
|
|
(
|
|
|
|
const mixedRhoEFvPatchScalarField& ptpsf,
|
|
|
|
const DimensionedField<scalar, volMesh>& iF
|
|
|
|
)
|
|
|
|
:
|
|
|
|
mixedFvPatchScalarField(ptpsf, iF)
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
void mixedRhoEFvPatchScalarField::autoMap
|
|
|
|
(
|
|
|
|
const fvPatchFieldMapper& m
|
|
|
|
)
|
|
|
|
{
|
|
|
|
mixedFvPatchScalarField::autoMap(m);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void mixedRhoEFvPatchScalarField::rmap
|
|
|
|
(
|
|
|
|
const fvPatchField<scalar>& ptf,
|
|
|
|
const labelList& addr
|
|
|
|
)
|
|
|
|
{
|
|
|
|
mixedFvPatchField<scalar>::rmap(ptf, addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void mixedRhoEFvPatchScalarField::updateCoeffs()
|
|
|
|
{
|
|
|
|
if (updated())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const fvPatchField<scalar>& rhop =
|
2010-11-15 19:08:57 +00:00
|
|
|
lookupPatchField<volScalarField, scalar>("rho");
|
2010-05-12 13:27:55 +00:00
|
|
|
const fvPatchField<vector>& rhoUp =
|
2010-11-15 19:08:57 +00:00
|
|
|
lookupPatchField<volVectorField, vector>("rhoU");
|
2010-05-12 13:27:55 +00:00
|
|
|
// fvPatchField<scalar>& Tp =
|
2010-11-15 19:08:57 +00:00
|
|
|
// lookupPatchField<volScalarField, scalar>("T");
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
const volScalarField& T = db().lookupObject<volScalarField>("T");
|
|
|
|
const label patchi = patch().index();
|
2013-07-18 01:02:34 +00:00
|
|
|
fvPatchScalarField& Tp =
|
2010-05-12 13:27:55 +00:00
|
|
|
const_cast<fvPatchScalarField&>(T.boundaryField()[patchi]);
|
|
|
|
|
|
|
|
Tp.evaluate();
|
|
|
|
|
|
|
|
const dictionary& thermodynamicProperties = db().lookupObject<IOdictionary>
|
|
|
|
(
|
|
|
|
"thermodynamicProperties"
|
|
|
|
);
|
|
|
|
|
|
|
|
dimensionedScalar Cv(thermodynamicProperties.lookup("Cv"));
|
|
|
|
|
|
|
|
valueFraction() = rhop.snGrad()/
|
|
|
|
(rhop.snGrad() - rhop*this->patch().deltaCoeffs());
|
|
|
|
|
|
|
|
refValue() = 0.5*rhop*magSqr(rhoUp/rhop);
|
|
|
|
refGrad() =
|
|
|
|
rhop*Cv.value()*Tp.snGrad()
|
|
|
|
+ (
|
2013-07-18 01:02:34 +00:00
|
|
|
refValue()
|
2010-05-12 13:27:55 +00:00
|
|
|
- (0.5*rhop.patchInternalField()*
|
|
|
|
magSqr(rhoUp.patchInternalField()/rhop.patchInternalField()))
|
|
|
|
)*patch().deltaCoeffs();
|
|
|
|
|
|
|
|
mixedFvPatchScalarField::updateCoeffs();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void mixedRhoEFvPatchScalarField::write(Ostream& os) const
|
|
|
|
{
|
|
|
|
fvPatchScalarField::write(os);
|
|
|
|
os.writeKeyword("valueFraction") << valueFraction()
|
|
|
|
<< token::END_STATEMENT << endl;
|
|
|
|
os.writeKeyword("refValue") << refValue() << token::END_STATEMENT << endl;
|
|
|
|
os.writeKeyword("refGrad") << refGrad() << token::END_STATEMENT << endl;
|
|
|
|
writeEntry("value", os);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
makePatchTypeField(fvPatchScalarField, mixedRhoEFvPatchScalarField);
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
} // End namespace Foam
|
|
|
|
|
|
|
|
// ************************************************************************* //
|