Using the VolField<Type> partial specialisation of GeometricField<Type, fvPatchField, volMesh> simplifies the code and improves readability.
365 lines
9.1 KiB
C++
365 lines
9.1 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Copyright (C) 2011-2022 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/>.
|
|
|
|
Class
|
|
Foam::meshToMesh0
|
|
|
|
Description
|
|
Serial mesh to mesh interpolation class.
|
|
|
|
SourceFiles
|
|
meshToMesh0.C
|
|
calculateMeshToMesh0Addressing.C
|
|
calculateMeshToMesh0Weights.C
|
|
meshToMesh0Templates.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef meshToMesh0_H
|
|
#define meshToMesh0_H
|
|
|
|
#include "fvMesh.H"
|
|
#include "HashTable.H"
|
|
#include "fvPatchMapper.H"
|
|
#include "scalarList.H"
|
|
#include "className.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
template<class Type>
|
|
class indexedOctree;
|
|
|
|
class treeDataCell;
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class meshToMesh0 Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class meshToMesh0
|
|
{
|
|
// Private Data
|
|
|
|
//- Source mesh reference
|
|
const fvMesh& fromMesh_;
|
|
|
|
//- Target mesh reference
|
|
const fvMesh& toMesh_;
|
|
|
|
//- fromMesh patch labels
|
|
HashTable<label> fromMeshPatches_;
|
|
|
|
//- toMesh patch labels
|
|
HashTable<label> toMeshPatches_;
|
|
|
|
//- Patch map
|
|
HashTable<word> patchMap_;
|
|
|
|
//- toMesh patch labels which cut the from-mesh
|
|
HashTable<label> cuttingPatches_;
|
|
|
|
//- Cell addressing
|
|
labelList cellAddressing_;
|
|
|
|
//- Boundary addressing
|
|
labelListList boundaryAddressing_;
|
|
|
|
//- Inverse-distance interpolation weights
|
|
mutable scalarListList* inverseDistanceWeightsPtr_;
|
|
|
|
//- Inverse-volume interpolation weights
|
|
mutable scalarListList* inverseVolumeWeightsPtr_;
|
|
|
|
//- Cell to cell overlap addressing
|
|
mutable labelListList* cellToCellAddressingPtr_;
|
|
|
|
//- Overlap volume
|
|
mutable scalar V_;
|
|
|
|
|
|
// Private Member Functions
|
|
|
|
//- Calculates mesh to mesh addressing pattern.
|
|
// For each cell from one mesh find the closest cell centre
|
|
// in the other mesh
|
|
void calcAddressing();
|
|
|
|
void cellAddresses
|
|
(
|
|
labelList& cells,
|
|
const pointField& points,
|
|
const fvMesh& fromMesh,
|
|
const List<bool>& boundaryCell,
|
|
const indexedOctree<treeDataCell>& oc
|
|
) const;
|
|
|
|
void calculateInverseDistanceWeights() const;
|
|
|
|
void calculateInverseVolumeWeights() const;
|
|
|
|
void calculateCellToCellAddressing() const;
|
|
|
|
const scalarListList& inverseDistanceWeights() const;
|
|
|
|
const scalarListList& inverseVolumeWeights() const;
|
|
|
|
const labelListList& cellToCellAddressing() const;
|
|
|
|
|
|
// Private static data members
|
|
|
|
//- Direct hit tolerance
|
|
static const scalar directHitTol;
|
|
|
|
|
|
public:
|
|
|
|
// Declare name of the class and its debug switch
|
|
ClassName("meshToMesh0");
|
|
|
|
|
|
//- Enumeration specifying required accuracy
|
|
enum order
|
|
{
|
|
MAP,
|
|
INTERPOLATE,
|
|
CELL_POINT_INTERPOLATE,
|
|
CELL_VOLUME_WEIGHT
|
|
};
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct from the two meshes, the patch name map for the patches
|
|
// to be interpolated and the names of the toMesh-patches which
|
|
// cut the fromMesh
|
|
meshToMesh0
|
|
(
|
|
const fvMesh& fromMesh,
|
|
const fvMesh& toMesh,
|
|
const HashTable<word>& patchMap,
|
|
const wordList& cuttingPatchNames
|
|
);
|
|
|
|
//- Construct from the two meshes assuming there is an exact mapping
|
|
// between the patches
|
|
meshToMesh0
|
|
(
|
|
const fvMesh& fromMesh,
|
|
const fvMesh& toMesh
|
|
);
|
|
|
|
|
|
//- Destructor
|
|
~meshToMesh0();
|
|
|
|
|
|
//- Patch-field interpolation class
|
|
class patchFieldInterpolator
|
|
:
|
|
public generalFvPatchFieldMapper
|
|
{
|
|
const labelList& directAddressing_;
|
|
|
|
|
|
public:
|
|
|
|
// Constructors
|
|
|
|
//- Construct given addressing
|
|
patchFieldInterpolator(const labelList& addr)
|
|
:
|
|
directAddressing_(addr)
|
|
{}
|
|
|
|
|
|
//- Destructor
|
|
virtual ~patchFieldInterpolator()
|
|
{}
|
|
|
|
|
|
// Member Functions
|
|
|
|
label size() const
|
|
{
|
|
return directAddressing_.size();
|
|
}
|
|
|
|
bool direct() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool hasUnmapped() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
const labelList& directAddressing() const
|
|
{
|
|
return directAddressing_;
|
|
}
|
|
};
|
|
|
|
|
|
// Member Functions
|
|
|
|
// Access
|
|
|
|
const fvMesh& fromMesh() const
|
|
{
|
|
return fromMesh_;
|
|
}
|
|
|
|
const fvMesh& toMesh() const
|
|
{
|
|
return toMesh_;
|
|
}
|
|
|
|
//- From toMesh cells to fromMesh cells
|
|
const labelList& cellAddressing() const
|
|
{
|
|
return cellAddressing_;
|
|
}
|
|
|
|
//- Overlap volume
|
|
scalar V() const
|
|
{
|
|
return V_;
|
|
}
|
|
|
|
|
|
// Interpolation
|
|
|
|
//- Map field
|
|
template<class Type>
|
|
void mapField
|
|
(
|
|
Field<Type>&,
|
|
const Field<Type>&,
|
|
const labelList& adr
|
|
) const;
|
|
|
|
//- Interpolate field using inverse-distance weights
|
|
template<class Type>
|
|
void interpolateField
|
|
(
|
|
Field<Type>&,
|
|
const VolField<Type>&,
|
|
const labelList& adr,
|
|
const scalarListList& weights
|
|
) const;
|
|
|
|
//- Interpolate field using inverse-volume weights
|
|
template<class Type>
|
|
void interpolateField
|
|
(
|
|
Field<Type>&,
|
|
const VolField<Type>&,
|
|
const labelListList& adr,
|
|
const scalarListList& weights
|
|
) const;
|
|
|
|
|
|
//- Interpolate field using cell-point interpolation
|
|
template<class Type>
|
|
void interpolateField
|
|
(
|
|
Field<Type>&,
|
|
const VolField<Type>&,
|
|
const labelList& adr,
|
|
const vectorField& centres
|
|
)const;
|
|
|
|
|
|
//- Interpolate internal volume field
|
|
template<class Type>
|
|
void interpolateInternalField
|
|
(
|
|
Field<Type>&,
|
|
const VolField<Type>&,
|
|
order=INTERPOLATE
|
|
) const;
|
|
|
|
template<class Type>
|
|
void interpolateInternalField
|
|
(
|
|
Field<Type>&,
|
|
const tmp<VolField<Type>>&,
|
|
order=INTERPOLATE
|
|
) const;
|
|
|
|
|
|
//- Interpolate volume field
|
|
template<class Type>
|
|
void interpolate
|
|
(
|
|
VolField<Type>&,
|
|
const VolField<Type>&,
|
|
order=INTERPOLATE
|
|
) const;
|
|
|
|
template<class Type>
|
|
void interpolate
|
|
(
|
|
VolField<Type>&,
|
|
const tmp<VolField<Type>>&,
|
|
order=INTERPOLATE
|
|
) const;
|
|
|
|
|
|
//- Interpolate volume field
|
|
template<class Type>
|
|
tmp<VolField<Type>> interpolate
|
|
(
|
|
const VolField<Type>&,
|
|
order=INTERPOLATE
|
|
) const;
|
|
|
|
template<class Type>
|
|
tmp<VolField<Type>> interpolate
|
|
(
|
|
const tmp<VolField<Type>>&,
|
|
order=INTERPOLATE
|
|
) const;
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#ifdef NoRepository
|
|
#include "meshToMesh0Templates.C"
|
|
#endif
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|