Newer
Older
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
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>
Henry Weller
committed
Foam::pointPatchField<Type>::pointPatchField
(
const pointPatch& p,
const DimensionedField<Type, pointMesh>& iF
)
:
patch_(p),
internalField_(iF),
updated_(false),
patchType_(word::null)
{}
template<class Type>
Henry Weller
committed
Foam::pointPatchField<Type>::pointPatchField
(
const pointPatch& p,
const DimensionedField<Type, pointMesh>& iF,
const dictionary& dict
)
:
patch_(p),
internalField_(iF),
updated_(false),
patchType_(dict.getOrDefault<word>("patchType", word::null))
Henry
committed
template<class Type>
Foam::pointPatchField<Type>::pointPatchField
(
const pointPatchField<Type>& ptf,
const pointPatch& p,
const DimensionedField<Type, pointMesh>& iF,
const pointPatchFieldMapper&
)
:
patch_(p),
internalField_(iF),
updated_(false),
patchType_(ptf.patchType_)
{}
Henry Weller
committed
Foam::pointPatchField<Type>::pointPatchField
(
const pointPatchField<Type>& ptf
)
:
patch_(ptf.patch_),
internalField_(ptf.internalField_),
updated_(false),
patchType_(ptf.patchType_)
{}
template<class Type>
Henry Weller
committed
Foam::pointPatchField<Type>::pointPatchField
(
const pointPatchField<Type>& ptf,
const DimensionedField<Type, pointMesh>& iF
)
:
patch_(ptf.patch_),
internalField_(iF),
updated_(false),
patchType_(ptf.patchType_)
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
template<class Type>
Henry Weller
committed
const Foam::objectRegistry& Foam::pointPatchField<Type>::db() const
{
return patch_.boundaryMesh().mesh()();
}
template<class Type>
Henry Weller
committed
void Foam::pointPatchField<Type>::write(Ostream& os) const
os.writeEntry("type", type());
os.writeEntry("patchType", patchType_);
}
}
Henry Weller
committed
Foam::tmp<Foam::Field<Type>>
Henry Weller
committed
Foam::pointPatchField<Type>::patchInternalField() const
return patchInternalField(primitiveField());
}
template<class Type>
template<class Type1>
Henry Weller
committed
Foam::tmp<Foam::Field<Type1>>
Henry Weller
committed
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>
Henry Weller
committed
Foam::tmp<Foam::Field<Type1>>
Henry Weller
committed
Foam::pointPatchField<Type>::patchInternalField
(
const Field<Type1>& iF
) const
{
return patchInternalField(iF, patch().meshPoints());
}
template<class Type>
template<class Type1>
Henry Weller
committed
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();
Henry Weller
committed
forAll(mp, pointi)
Henry Weller
committed
iF[mp[pointi]] += pF[pointi];
template<class Type>
template<class Type1>
Henry Weller
committed
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)
{
Henry Weller
committed
label pointi = points[i];
iF[mp[pointi]] += pF[pointi];
template<class Type>
template<class Type1>
Henry Weller
committed
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);
}
Henry Weller
committed
forAll(meshPoints, pointi)
Henry Weller
committed
iF[meshPoints[pointi]] = pF[pointi];
}
}
template<class Type>
template<class Type1>
Henry Weller
committed
void Foam::pointPatchField<Type>::setInInternalField
(
Field<Type1>& iF,
const Field<Type1>& pF
) const
{
setInInternalField(iF, pF, patch().meshPoints());
}
template<class Type>
Henry Weller
committed
void Foam::pointPatchField<Type>::evaluate(const Pstream::commsTypes)
{
if (!updated_)
{
updateCoeffs();
}
updated_ = false;
}
// * * * * * * * * * * * * * * * IOstream Operators * * * * * * * * * * * * //
template<class Type>
Henry Weller
committed
Foam::Ostream& Foam::operator<<
(
Ostream& os,
const pointPatchField<Type>& ptf
)
{
ptf.write(os);
os.check(FUNCTION_NAME);
return os;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#include "pointPatchFieldNew.C"
// ************************************************************************* //