mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- simplifies construction/inheritance
ENH: add {fa,fv}PatchField::zeroGradientType() static
- can be used to avoid literal "zeroGradient" in places
STYLE: adjust naming of pointPatch runtime selection table
- simply use 'patch' as per fa/fv fields
STYLE: add zero-size guard to patch constraintType(const word&)
318 lines
7.3 KiB
C
318 lines
7.3 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | www.openfoam.com
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Copyright (C) 2011-2016 OpenFOAM Foundation
|
|
Copyright (C) 2020-2022 OpenCFD 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 <http://www.gnu.org/licenses/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "pointPatchField.H"
|
|
#include "pointMesh.H"
|
|
#include "dictionary.H"
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
Foam::pointPatchField<Type>::pointPatchField
|
|
(
|
|
const pointPatch& p,
|
|
const DimensionedField<Type, pointMesh>& iF
|
|
)
|
|
:
|
|
pointPatchFieldBase(p),
|
|
internalField_(iF)
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
Foam::pointPatchField<Type>::pointPatchField
|
|
(
|
|
const pointPatch& p,
|
|
const DimensionedField<Type, pointMesh>& iF,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
pointPatchFieldBase(p, dict),
|
|
internalField_(iF)
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
Foam::pointPatchField<Type>::pointPatchField
|
|
(
|
|
const pointPatchField<Type>& ptf,
|
|
const pointPatch& p,
|
|
const DimensionedField<Type, pointMesh>& iF,
|
|
const pointPatchFieldMapper&
|
|
)
|
|
:
|
|
pointPatchFieldBase(ptf, p),
|
|
internalField_(iF)
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
Foam::pointPatchField<Type>::pointPatchField
|
|
(
|
|
const pointPatchField<Type>& ptf
|
|
)
|
|
:
|
|
pointPatchFieldBase(ptf),
|
|
internalField_(ptf.internalField_)
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
Foam::pointPatchField<Type>::pointPatchField
|
|
(
|
|
const pointPatchField<Type>& ptf,
|
|
const DimensionedField<Type, pointMesh>& iF
|
|
)
|
|
:
|
|
pointPatchFieldBase(ptf),
|
|
internalField_(iF)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
void Foam::pointPatchField<Type>::write(Ostream& os) const
|
|
{
|
|
os.writeEntry("type", type());
|
|
|
|
if (!patchType().empty())
|
|
{
|
|
os.writeEntry("patchType", patchType());
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::tmp<Foam::Field<Type>>
|
|
Foam::pointPatchField<Type>::patchInternalField() const
|
|
{
|
|
return patchInternalField(primitiveField());
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
template<class Type1>
|
|
Foam::tmp<Foam::Field<Type1>>
|
|
Foam::pointPatchField<Type>::patchInternalField
|
|
(
|
|
const Field<Type1>& iF,
|
|
const labelList& meshPoints
|
|
) const
|
|
{
|
|
// Check size
|
|
if (iF.size() != primitiveField().size())
|
|
{
|
|
FatalErrorInFunction
|
|
<< "given internal field does not correspond to the mesh. "
|
|
<< "Field size: " << iF.size()
|
|
<< " mesh size: " << primitiveField().size()
|
|
<< abort(FatalError);
|
|
}
|
|
|
|
return tmp<Field<Type1>>::New(iF, meshPoints);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
template<class Type1>
|
|
Foam::tmp<Foam::Field<Type1>>
|
|
Foam::pointPatchField<Type>::patchInternalField
|
|
(
|
|
const Field<Type1>& iF
|
|
) const
|
|
{
|
|
return patchInternalField(iF, patch().meshPoints());
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
template<class Type1>
|
|
void Foam::pointPatchField<Type>::addToInternalField
|
|
(
|
|
Field<Type1>& iF,
|
|
const Field<Type1>& pF
|
|
) const
|
|
{
|
|
// Check size
|
|
if (iF.size() != primitiveField().size())
|
|
{
|
|
FatalErrorInFunction
|
|
<< "given internal field does not correspond to the mesh. "
|
|
<< "Field size: " << iF.size()
|
|
<< " mesh size: " << primitiveField().size()
|
|
<< abort(FatalError);
|
|
}
|
|
|
|
if (pF.size() != size())
|
|
{
|
|
FatalErrorInFunction
|
|
<< "given patch field does not correspond to the mesh. "
|
|
<< "Field size: " << pF.size()
|
|
<< " mesh size: " << size()
|
|
<< abort(FatalError);
|
|
}
|
|
|
|
// Get the addressing
|
|
const labelList& mp = patch().meshPoints();
|
|
|
|
forAll(mp, pointi)
|
|
{
|
|
iF[mp[pointi]] += pF[pointi];
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
template<class Type1>
|
|
void Foam::pointPatchField<Type>::addToInternalField
|
|
(
|
|
Field<Type1>& iF,
|
|
const Field<Type1>& pF,
|
|
const labelList& points
|
|
) const
|
|
{
|
|
// Check size
|
|
if (iF.size() != primitiveField().size())
|
|
{
|
|
FatalErrorInFunction
|
|
<< "given internal field does not correspond to the mesh. "
|
|
<< "Field size: " << iF.size()
|
|
<< " mesh size: " << primitiveField().size()
|
|
<< abort(FatalError);
|
|
}
|
|
|
|
if (pF.size() != size())
|
|
{
|
|
FatalErrorInFunction
|
|
<< "given patch field does not correspond to the mesh. "
|
|
<< "Field size: " << pF.size()
|
|
<< " mesh size: " << size()
|
|
<< abort(FatalError);
|
|
}
|
|
|
|
// Get the addressing
|
|
const labelList& mp = patch().meshPoints();
|
|
|
|
forAll(points, i)
|
|
{
|
|
label pointi = points[i];
|
|
iF[mp[pointi]] += pF[pointi];
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
template<class Type1>
|
|
void Foam::pointPatchField<Type>::setInInternalField
|
|
(
|
|
Field<Type1>& iF,
|
|
const Field<Type1>& pF,
|
|
const labelList& meshPoints
|
|
) const
|
|
{
|
|
// Check size
|
|
if (iF.size() != primitiveField().size())
|
|
{
|
|
FatalErrorInFunction
|
|
<< "given internal field does not correspond to the mesh. "
|
|
<< "Field size: " << iF.size()
|
|
<< " mesh size: " << primitiveField().size()
|
|
<< abort(FatalError);
|
|
}
|
|
|
|
if (pF.size() != meshPoints.size())
|
|
{
|
|
FatalErrorInFunction
|
|
<< "given patch field does not correspond to the meshPoints. "
|
|
<< "Field size: " << pF.size()
|
|
<< " meshPoints size: " << size()
|
|
<< abort(FatalError);
|
|
}
|
|
|
|
forAll(meshPoints, pointi)
|
|
{
|
|
iF[meshPoints[pointi]] = pF[pointi];
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
template<class Type1>
|
|
void Foam::pointPatchField<Type>::setInInternalField
|
|
(
|
|
Field<Type1>& iF,
|
|
const Field<Type1>& pF
|
|
) const
|
|
{
|
|
setInInternalField(iF, pF, patch().meshPoints());
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::pointPatchField<Type>::updateCoeffs()
|
|
{
|
|
pointPatchFieldBase::setUpdated(true);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::pointPatchField<Type>::evaluate(const Pstream::commsTypes)
|
|
{
|
|
if (!updated())
|
|
{
|
|
updateCoeffs();
|
|
}
|
|
|
|
pointPatchFieldBase::setUpdated(false);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * IOstream Operators * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
Foam::Ostream& Foam::operator<<
|
|
(
|
|
Ostream& os,
|
|
const pointPatchField<Type>& ptf
|
|
)
|
|
{
|
|
ptf.write(os);
|
|
|
|
os.check(FUNCTION_NAME);
|
|
|
|
return os;
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#include "pointPatchFieldNew.C"
|
|
|
|
// ************************************************************************* //
|