mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
99 lines
2.8 KiB
C
99 lines
2.8 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2015-2017 OpenFOAM Foundation
|
|
\\/ M anipulation | Copyright (C) 2015-2018 OpenCFD Ltd.
|
|
-------------------------------------------------------------------------------
|
|
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 "decompositionConstraint.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
defineTypeNameAndDebug(decompositionConstraint, 1);
|
|
defineRunTimeSelectionTable(decompositionConstraint, dictionary);
|
|
}
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::decompositionConstraint::decompositionConstraint
|
|
(
|
|
const dictionary& constraintDict
|
|
)
|
|
:
|
|
coeffDict_(constraintDict)
|
|
{}
|
|
|
|
|
|
Foam::decompositionConstraint::decompositionConstraint
|
|
(
|
|
const dictionary& constraintDict,
|
|
const word&
|
|
)
|
|
:
|
|
coeffDict_(constraintDict)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Selectors * * * * * * * * * * * * * * * * //
|
|
|
|
Foam::autoPtr<Foam::decompositionConstraint>
|
|
Foam::decompositionConstraint::New
|
|
(
|
|
const dictionary& dict
|
|
)
|
|
{
|
|
return decompositionConstraint::New
|
|
(
|
|
dict,
|
|
dict.get<word>("type")
|
|
);
|
|
}
|
|
|
|
|
|
Foam::autoPtr<Foam::decompositionConstraint>
|
|
Foam::decompositionConstraint::New
|
|
(
|
|
const dictionary& dict,
|
|
const word& modelType
|
|
)
|
|
{
|
|
Info<< "Selecting decompositionConstraint " << modelType << endl;
|
|
|
|
auto cstrIter = dictionaryConstructorTablePtr_->cfind(modelType);
|
|
|
|
if (!cstrIter.found())
|
|
{
|
|
FatalIOErrorInFunction(dict)
|
|
<< "Unknown decompositionConstraint: "
|
|
<< modelType << nl << nl
|
|
<< "Valid types:" << nl
|
|
<< dictionaryConstructorTablePtr_->sortedToc()
|
|
<< exit(FatalIOError);
|
|
}
|
|
|
|
return autoPtr<decompositionConstraint>(cstrIter()(dict));
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|