mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
Add support for constructing VectorSpaces from forms with lower component type, e.g. Vector<scalar> from Vector<label>
119 lines
3.4 KiB
C
119 lines
3.4 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2013 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 "sampledPatch.H"
|
|
|
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
Foam::tmp<Foam::Field<Type> >
|
|
Foam::sampledPatch::sampleField
|
|
(
|
|
const GeometricField<Type, fvPatchField, volMesh>& vField
|
|
) const
|
|
{
|
|
// One value per face
|
|
tmp<Field<Type> > tvalues(new Field<Type>(patchFaceLabels_.size()));
|
|
Field<Type>& values = tvalues();
|
|
forAll(patchFaceLabels_, i)
|
|
{
|
|
label patchI = patchIDs_[patchIndex_[i]];
|
|
const Field<Type>& bField = vField.boundaryField()[patchI];
|
|
values[i] = bField[patchFaceLabels_[i]];
|
|
}
|
|
|
|
return tvalues;
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::tmp<Foam::Field<Type> >
|
|
Foam::sampledPatch::sampleField
|
|
(
|
|
const GeometricField<Type, fvsPatchField, surfaceMesh>& sField
|
|
) const
|
|
{
|
|
// One value per face
|
|
tmp<Field<Type> > tvalues(new Field<Type>(patchFaceLabels_.size()));
|
|
Field<Type>& values = tvalues();
|
|
|
|
forAll(patchFaceLabels_, i)
|
|
{
|
|
label patchI = patchIDs_[patchIndex_[i]];
|
|
values[i] = sField.boundaryField()[patchI][patchFaceLabels_[i]];
|
|
}
|
|
|
|
return tvalues;
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::tmp<Foam::Field<Type> >
|
|
Foam::sampledPatch::interpolateField
|
|
(
|
|
const interpolation<Type>& interpolator
|
|
) const
|
|
{
|
|
// One value per vertex
|
|
tmp<Field<Type> > tvalues(new Field<Type>(points().size()));
|
|
Field<Type>& values = tvalues();
|
|
|
|
const labelList& own = mesh().faceOwner();
|
|
|
|
boolList pointDone(points().size(), false);
|
|
|
|
forAll(faces(), cutFaceI)
|
|
{
|
|
label patchI = patchIDs_[patchIndex_[cutFaceI]];
|
|
const polyPatch& pp = mesh().boundaryMesh()[patchI];
|
|
label patchFaceI = patchFaceLabels()[cutFaceI];
|
|
const face& f = faces()[cutFaceI];
|
|
|
|
forAll(f, faceVertI)
|
|
{
|
|
label pointI = f[faceVertI];
|
|
|
|
if (!pointDone[pointI])
|
|
{
|
|
label faceI = patchFaceI + pp.start();
|
|
label cellI = own[faceI];
|
|
|
|
values[pointI] = interpolator.interpolate
|
|
(
|
|
points()[pointI],
|
|
cellI,
|
|
faceI
|
|
);
|
|
pointDone[pointI] = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
return tvalues;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|