/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2016 OpenFOAM Foundation
-------------------------------------------------------------------------------
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 "directionMixedFvPatchField.H"
#include "symmTransformField.H"
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
template
Foam::directionMixedFvPatchField::directionMixedFvPatchField
(
const fvPatch& p,
const DimensionedField& iF
)
:
transformFvPatchField(p, iF),
refValue_(p.size()),
refGrad_(p.size()),
valueFraction_(p.size())
{}
template
Foam::directionMixedFvPatchField::directionMixedFvPatchField
(
const directionMixedFvPatchField& ptf,
const fvPatch& p,
const DimensionedField& iF,
const fvPatchFieldMapper& mapper
)
:
transformFvPatchField(ptf, p, iF, mapper),
refValue_(ptf.refValue_, mapper),
refGrad_(ptf.refGrad_, mapper),
valueFraction_(ptf.valueFraction_, mapper)
{
if (notNull(iF) && mapper.hasUnmapped())
{
WarningInFunction
<< "On field " << iF.name() << " patch " << p.name()
<< " patchField " << this->type()
<< " : mapper does not map all values." << nl
<< " To avoid this warning fully specify the mapping in derived"
<< " patch fields." << endl;
}
}
template
Foam::directionMixedFvPatchField::directionMixedFvPatchField
(
const fvPatch& p,
const DimensionedField& iF,
const dictionary& dict
)
:
transformFvPatchField(p, iF, dict),
refValue_("refValue", dict, p.size()),
refGrad_("refGradient", dict, p.size()),
valueFraction_("valueFraction", dict, p.size())
{
evaluate();
}
template
Foam::directionMixedFvPatchField::directionMixedFvPatchField
(
const directionMixedFvPatchField& ptf,
const DimensionedField& iF
)
:
transformFvPatchField(ptf, iF),
refValue_(ptf.refValue_),
refGrad_(ptf.refGrad_),
valueFraction_(ptf.valueFraction_)
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
template
void Foam::directionMixedFvPatchField::autoMap
(
const fvPatchFieldMapper& m
)
{
transformFvPatchField::autoMap(m);
refValue_.autoMap(m);
refGrad_.autoMap(m);
valueFraction_.autoMap(m);
}
template
void Foam::directionMixedFvPatchField::rmap
(
const fvPatchField& ptf,
const labelList& addr
)
{
transformFvPatchField::rmap(ptf, addr);
const directionMixedFvPatchField& dmptf =
refCast>(ptf);
refValue_.rmap(dmptf.refValue_, addr);
refGrad_.rmap(dmptf.refGrad_, addr);
valueFraction_.rmap(dmptf.valueFraction_, addr);
}
template
Foam::tmp>
Foam::directionMixedFvPatchField::snGrad() const
{
const Field pif(this->patchInternalField());
tmp> normalValue = transform(valueFraction_, refValue_);
tmp> gradValue = pif + refGrad_/this->patch().deltaCoeffs();
tmp> transformGradValue =
transform(I - valueFraction_, gradValue);
return
(normalValue + transformGradValue - pif)*
this->patch().deltaCoeffs();
}
template
void Foam::directionMixedFvPatchField::evaluate(const Pstream::commsTypes)
{
if (!this->updated())
{
this->updateCoeffs();
}
tmp> normalValue = transform(valueFraction_, refValue_);
tmp> gradValue =
this->patchInternalField() + refGrad_/this->patch().deltaCoeffs();
tmp> transformGradValue =
transform(I - valueFraction_, gradValue);
Field::operator=(normalValue + transformGradValue);
transformFvPatchField::evaluate();
}
template
Foam::tmp>
Foam::directionMixedFvPatchField::snGradTransformDiag() const
{
vectorField diag(valueFraction_.size());
diag.replace
(
vector::X,
sqrt(mag(valueFraction_.component(symmTensor::XX)))
);
diag.replace
(
vector::Y,
sqrt(mag(valueFraction_.component(symmTensor::YY)))
);
diag.replace
(
vector::Z,
sqrt(mag(valueFraction_.component(symmTensor::ZZ)))
);
return transformFieldMask(pow::rank>(diag));
}
template
void Foam::directionMixedFvPatchField::write(Ostream& os) const
{
transformFvPatchField::write(os);
refValue_.writeEntry("refValue", os);
refGrad_.writeEntry("refGradient", os);
valueFraction_.writeEntry("valueFraction", os);
fvPatchField::writeValueEntry(os);
}
// ************************************************************************* //