/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd |
\\/ M anipulation |
-------------------------------------------------------------------------------
| Copyright (C) 2016-2017 Wikki Ltd
-------------------------------------------------------------------------------
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 "basicSymmetryFaPatchField.H"
#include "symmTransformField.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
template
basicSymmetryFaPatchField::basicSymmetryFaPatchField
(
const faPatch& p,
const DimensionedField& iF
)
:
transformFaPatchField(p, iF)
{}
template
basicSymmetryFaPatchField::basicSymmetryFaPatchField
(
const basicSymmetryFaPatchField& ptf,
const faPatch& p,
const DimensionedField& iF,
const faPatchFieldMapper& mapper
)
:
transformFaPatchField(ptf, p, iF, mapper)
{}
template
basicSymmetryFaPatchField::basicSymmetryFaPatchField
(
const faPatch& p,
const DimensionedField& iF,
const dictionary& dict
)
:
transformFaPatchField(p, iF, dict)
{
this->evaluate();
}
template
basicSymmetryFaPatchField::basicSymmetryFaPatchField
(
const basicSymmetryFaPatchField& ptf
)
:
transformFaPatchField(ptf)
{}
template
basicSymmetryFaPatchField::basicSymmetryFaPatchField
(
const basicSymmetryFaPatchField& ptf,
const DimensionedField& iF
)
:
transformFaPatchField(ptf, iF)
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
// Return gradient at boundary
template
tmp > basicSymmetryFaPatchField::snGrad() const
{
const vectorField nHat(this->patch().edgeNormals());
return
(
transform(I - 2.0*sqr(nHat), this->patchInternalField())
- this->patchInternalField()
)*(this->patch().deltaCoeffs()/2.0);
}
// Evaluate the field on the patch
template
void basicSymmetryFaPatchField::evaluate(const Pstream::commsTypes)
{
if (!this->updated())
{
this->updateCoeffs();
}
const vectorField nHat(this->patch().edgeNormals());
Field::operator=
(
(
this->patchInternalField()
+ transform(I - 2.0*sqr(nHat), this->patchInternalField())
)/2.0
);
transformFaPatchField::evaluate();
}
// Return defining fields
template
tmp > basicSymmetryFaPatchField::snGradTransformDiag() const
{
const vectorField nHat(this->patch().edgeNormals());
vectorField diag(nHat.size());
diag.replace(vector::X, mag(nHat.component(vector::X)));
diag.replace(vector::Y, mag(nHat.component(vector::Y)));
diag.replace(vector::Z, mag(nHat.component(vector::Z)));
return transformFieldMask(pow::rank>(diag));
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// ************************************************************************* //