boundaryProcAddressing has been removed. This has not been needed for a long time. decomposePar has been optimised for mininum IO, rather than minimum memory usage. decomposePar has also been corrected so that it can decompose sequences of time-varying meshes.
115 lines
3.5 KiB
C++
115 lines
3.5 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/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "pointFieldDecomposer.H"
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::pointFieldDecomposer::patchFieldDecomposer::patchFieldDecomposer
|
|
(
|
|
const pointPatch& completeMeshPatch,
|
|
const pointPatch& procMeshPatch,
|
|
const labelList& directAddr
|
|
)
|
|
:
|
|
pointPatchFieldMapperPatchRef
|
|
(
|
|
completeMeshPatch,
|
|
procMeshPatch
|
|
),
|
|
directAddressing_(procMeshPatch.size(), -1),
|
|
hasUnmapped_(false)
|
|
{
|
|
// Create the inverse-addressing of the patch point labels.
|
|
labelList pointMap(completeMeshPatch.boundaryMesh().mesh().size(), -1);
|
|
|
|
const labelList& completeMeshPatchPoints = completeMeshPatch.meshPoints();
|
|
|
|
forAll(completeMeshPatchPoints, pointi)
|
|
{
|
|
pointMap[completeMeshPatchPoints[pointi]] = pointi;
|
|
}
|
|
|
|
// Use the inverse point addressing to create the addressing table for this
|
|
// patch
|
|
const labelList& procMeshPatchPoints = procMeshPatch.meshPoints();
|
|
|
|
forAll(procMeshPatchPoints, pointi)
|
|
{
|
|
directAddressing_[pointi] =
|
|
pointMap[directAddr[procMeshPatchPoints[pointi]]];
|
|
}
|
|
|
|
// Check that all the patch point addresses are set
|
|
if (directAddressing_.size() && min(directAddressing_) < 0)
|
|
{
|
|
hasUnmapped_ = true;
|
|
|
|
FatalErrorInFunction
|
|
<< "Incomplete patch point addressing"
|
|
<< abort(FatalError);
|
|
}
|
|
}
|
|
|
|
|
|
Foam::pointFieldDecomposer::pointFieldDecomposer
|
|
(
|
|
const pointMesh& completeMesh,
|
|
const pointMesh& procMesh,
|
|
const labelList& pointAddressing
|
|
)
|
|
:
|
|
completeMesh_(completeMesh),
|
|
procMesh_(procMesh),
|
|
pointAddressing_(pointAddressing),
|
|
patchFieldDecomposers_(procMesh_.boundary().size())
|
|
{
|
|
forAll(procMesh_.boundary(), patchi)
|
|
{
|
|
if (patchi < completeMesh_.boundary().size())
|
|
{
|
|
patchFieldDecomposers_.set
|
|
(
|
|
patchi,
|
|
new patchFieldDecomposer
|
|
(
|
|
completeMesh_.boundary()[patchi],
|
|
procMesh_.boundary()[patchi],
|
|
pointAddressing_
|
|
)
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
Foam::pointFieldDecomposer::~pointFieldDecomposer()
|
|
{}
|
|
|
|
|
|
// ************************************************************************* //
|