mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
140 lines
4.0 KiB
C
140 lines
4.0 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.
|
|
\\/ 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 2 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, write to the Free Software Foundation,
|
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
Description
|
|
Decomposition given a cell-to-processor association in a file
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "manualDecomp.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
#include "IFstream.H"
|
|
#include "labelIOList.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
defineTypeNameAndDebug(manualDecomp, 0);
|
|
|
|
addToRunTimeSelectionTable
|
|
(
|
|
decompositionMethod,
|
|
manualDecomp,
|
|
dictionary
|
|
);
|
|
|
|
addToRunTimeSelectionTable
|
|
(
|
|
decompositionMethod,
|
|
manualDecomp,
|
|
dictionaryMesh
|
|
);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::manualDecomp::manualDecomp(const dictionary& decompositionDict)
|
|
:
|
|
decompositionMethod(decompositionDict)
|
|
{
|
|
notImplemented("manualDecomp(const dictionary&)");
|
|
}
|
|
|
|
|
|
Foam::manualDecomp::manualDecomp
|
|
(
|
|
const dictionary& decompositionDict,
|
|
const polyMesh& mesh
|
|
)
|
|
:
|
|
decompositionMethod(decompositionDict),
|
|
meshPtr_(&mesh),
|
|
decompDataFile_
|
|
(
|
|
decompositionDict.subDict(word(decompositionDict.lookup("method"))
|
|
+ "Coeffs").lookup("dataFile")
|
|
)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
Foam::labelList Foam::manualDecomp::decompose
|
|
(
|
|
const pointField& points,
|
|
const scalarField& pointWeights
|
|
)
|
|
{
|
|
const polyMesh& mesh = *meshPtr_;
|
|
|
|
labelIOList finalDecomp
|
|
(
|
|
IOobject
|
|
(
|
|
decompDataFile_,
|
|
mesh.facesInstance(),
|
|
mesh,
|
|
IOobject::MUST_READ,
|
|
IOobject::AUTO_WRITE,
|
|
false
|
|
)
|
|
);
|
|
|
|
// check if the final decomposition is OK
|
|
|
|
if (finalDecomp.size() != points.size())
|
|
{
|
|
FatalErrorIn
|
|
(
|
|
"manualDecomp::decompose(const pointField&, const scalarField&)"
|
|
) << "Size of decomposition list does not correspond "
|
|
<< "to the number of points. Size: "
|
|
<< finalDecomp.size() << " Number of points: "
|
|
<< points.size()
|
|
<< ".\n" << "Manual decomposition data read from file "
|
|
<< decompDataFile_ << "." << endl
|
|
<< exit(FatalError);
|
|
}
|
|
|
|
if (min(finalDecomp) < 0 || max(finalDecomp) > nProcessors_ - 1)
|
|
{
|
|
FatalErrorIn
|
|
(
|
|
"manualDecomp::decompose(const pointField&, const scalarField&)"
|
|
) << "According to the decomposition, cells assigned to "
|
|
<< "impossible processor numbers. Min processor = "
|
|
<< min(finalDecomp) << " Max processor = " << max(finalDecomp)
|
|
<< ".\n" << "Manual decomposition data read from file "
|
|
<< decompDataFile_ << "." << endl
|
|
<< exit(FatalError);
|
|
}
|
|
|
|
return finalDecomp;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|