to ensure 'patchType' is set as specified. Required substantial change to the organization of the reading of the 'value' entry requiring careful testing and there may be some residual issues remaining. Please report any problems with the reading and initialization of patch fields. Resolves bug-report http://bugs.openfoam.org/view.php?id=2266
150 lines
3.6 KiB
C
150 lines
3.6 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2016 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 <http://www.gnu.org/licenses/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "transformFvPatchField.H"
|
|
#include "IOstreams.H"
|
|
#include "transformField.H"
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
Foam::transformFvPatchField<Type>::transformFvPatchField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<Type, volMesh>& iF
|
|
)
|
|
:
|
|
fvPatchField<Type>(p, iF)
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
Foam::transformFvPatchField<Type>::transformFvPatchField
|
|
(
|
|
const transformFvPatchField<Type>& ptf,
|
|
const fvPatch& p,
|
|
const DimensionedField<Type, volMesh>& iF,
|
|
const fvPatchFieldMapper& mapper
|
|
)
|
|
:
|
|
fvPatchField<Type>(ptf, p, iF, mapper)
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
Foam::transformFvPatchField<Type>::transformFvPatchField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<Type, volMesh>& iF,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
fvPatchField<Type>(p, iF, dict, false)
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
Foam::transformFvPatchField<Type>::transformFvPatchField
|
|
(
|
|
const transformFvPatchField<Type>& ptf
|
|
)
|
|
:
|
|
fvPatchField<Type>(ptf)
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
Foam::transformFvPatchField<Type>::transformFvPatchField
|
|
(
|
|
const transformFvPatchField<Type>& ptf,
|
|
const DimensionedField<Type, volMesh>& iF
|
|
)
|
|
:
|
|
fvPatchField<Type>(ptf, iF)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
Foam::tmp<Foam::Field<Type>>
|
|
Foam::transformFvPatchField<Type>::valueInternalCoeffs
|
|
(
|
|
const tmp<scalarField>&
|
|
) const
|
|
{
|
|
return pTraits<Type>::one - snGradTransformDiag();
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::tmp<Foam::Field<Type>>
|
|
Foam::transformFvPatchField<Type>::valueBoundaryCoeffs
|
|
(
|
|
const tmp<scalarField>&
|
|
) const
|
|
{
|
|
return
|
|
*this
|
|
- cmptMultiply
|
|
(
|
|
valueInternalCoeffs(this->patch().weights()),
|
|
this->patchInternalField()
|
|
);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::tmp<Foam::Field<Type>>
|
|
Foam::transformFvPatchField<Type>::gradientInternalCoeffs() const
|
|
{
|
|
return -this->patch().deltaCoeffs()*snGradTransformDiag();
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::tmp<Foam::Field<Type>>
|
|
Foam::transformFvPatchField<Type>::gradientBoundaryCoeffs() const
|
|
{
|
|
return
|
|
snGrad()
|
|
- cmptMultiply(gradientInternalCoeffs(), this->patchInternalField());
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
void Foam::transformFvPatchField<Type>::operator=
|
|
(
|
|
const fvPatchField<Type>& ptf
|
|
)
|
|
{
|
|
this->evaluate();
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|