This permits further non-conformal connnection types to store additional or alternative information in the fvMesh::polyFacesBf patch fields. Previously, this field just used calculated patch fields types. This change has required an update to the fvsPatchFields to make their handling of IO of the value field consistent with the fvPatchFields. The base class no longer writes out the value field by default.
146 lines
3.6 KiB
C++
146 lines
3.6 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Copyright (C) 2011-2023 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 "zeroGradientFvPatchField.H"
|
|
#include "fvPatchFieldMapper.H"
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
Foam::zeroGradientFvPatchField<Type>::zeroGradientFvPatchField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<Type, volMesh>& iF
|
|
)
|
|
:
|
|
fvPatchField<Type>(p, iF)
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
Foam::zeroGradientFvPatchField<Type>::zeroGradientFvPatchField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<Type, volMesh>& iF,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
fvPatchField<Type>(p, iF, dict, false)
|
|
{
|
|
fvPatchField<Type>::operator=(this->patchInternalField());
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::zeroGradientFvPatchField<Type>::zeroGradientFvPatchField
|
|
(
|
|
const zeroGradientFvPatchField<Type>& ptf,
|
|
const fvPatch& p,
|
|
const DimensionedField<Type, volMesh>& iF,
|
|
const fvPatchFieldMapper& mapper
|
|
)
|
|
:
|
|
fvPatchField<Type>(ptf, p, iF, mapper)
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
Foam::zeroGradientFvPatchField<Type>::zeroGradientFvPatchField
|
|
(
|
|
const zeroGradientFvPatchField& zgpf,
|
|
const DimensionedField<Type, volMesh>& iF
|
|
)
|
|
:
|
|
fvPatchField<Type>(zgpf, iF)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
void Foam::zeroGradientFvPatchField<Type>::evaluate(const Pstream::commsTypes)
|
|
{
|
|
if (!this->updated())
|
|
{
|
|
this->updateCoeffs();
|
|
}
|
|
|
|
fvPatchField<Type>::operator==(this->patchInternalField());
|
|
fvPatchField<Type>::evaluate();
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::tmp<Foam::Field<Type>>
|
|
Foam::zeroGradientFvPatchField<Type>::valueInternalCoeffs
|
|
(
|
|
const tmp<scalarField>&
|
|
) const
|
|
{
|
|
return tmp<Field<Type>>
|
|
(
|
|
new Field<Type>(this->size(), pTraits<Type>::one)
|
|
);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::tmp<Foam::Field<Type>>
|
|
Foam::zeroGradientFvPatchField<Type>::valueBoundaryCoeffs
|
|
(
|
|
const tmp<scalarField>&
|
|
) const
|
|
{
|
|
return tmp<Field<Type>>
|
|
(
|
|
new Field<Type>(this->size(), Zero)
|
|
);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::tmp<Foam::Field<Type>>
|
|
Foam::zeroGradientFvPatchField<Type>::gradientInternalCoeffs() const
|
|
{
|
|
return tmp<Field<Type>>
|
|
(
|
|
new Field<Type>(this->size(), Zero)
|
|
);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::tmp<Foam::Field<Type>>
|
|
Foam::zeroGradientFvPatchField<Type>::gradientBoundaryCoeffs() const
|
|
{
|
|
return tmp<Field<Type>>
|
|
(
|
|
new Field<Type>(this->size(), Zero)
|
|
);
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|