mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
112 lines
3.2 KiB
C
112 lines
3.2 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | www.openfoam.com
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Copyright (C) 2013-2016 OpenFOAM Foundation
|
|
Copyright (C) 2019-2020 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 "PackingModel.H"
|
|
#include "AveragingMethod.H"
|
|
#include "ParticleStressModel.H"
|
|
#include "CorrectionLimitingMethod.H"
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
template<class CloudType>
|
|
Foam::PackingModel<CloudType>::PackingModel(CloudType& owner)
|
|
:
|
|
CloudSubModelBase<CloudType>(owner),
|
|
particleStressModel_(nullptr)
|
|
{}
|
|
|
|
|
|
template<class CloudType>
|
|
Foam::PackingModel<CloudType>::PackingModel
|
|
(
|
|
const dictionary& dict,
|
|
CloudType& owner,
|
|
const word& type
|
|
)
|
|
:
|
|
CloudSubModelBase<CloudType>(owner, dict, typeName, type),
|
|
particleStressModel_
|
|
(
|
|
ParticleStressModel::New
|
|
(
|
|
this->coeffDict().subDict(ParticleStressModel::typeName)
|
|
)
|
|
)
|
|
{}
|
|
|
|
|
|
template<class CloudType>
|
|
Foam::PackingModel<CloudType>::PackingModel(const PackingModel<CloudType>& cm)
|
|
:
|
|
CloudSubModelBase<CloudType>(cm),
|
|
particleStressModel_(cm.particleStressModel_)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
template<class CloudType>
|
|
Foam::PackingModel<CloudType>::~PackingModel()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Selector * * * * * * * * * * * * * * * * //
|
|
|
|
template<class CloudType>
|
|
Foam::autoPtr<Foam::PackingModel<CloudType>>
|
|
Foam::PackingModel<CloudType>::New
|
|
(
|
|
const dictionary& dict,
|
|
CloudType& owner
|
|
)
|
|
{
|
|
const word modelType
|
|
(
|
|
dict.template getOrDefault<word>(typeName, "none")
|
|
);
|
|
Info<< "Selecting packing model " << modelType << endl;
|
|
|
|
auto cstrIter = dictionaryConstructorTablePtr_->cfind(modelType);
|
|
|
|
if (!cstrIter.found())
|
|
{
|
|
FatalIOErrorInLookup
|
|
(
|
|
dict,
|
|
"packing model",
|
|
modelType,
|
|
*dictionaryConstructorTablePtr_
|
|
) << abort(FatalIOError);
|
|
}
|
|
|
|
return autoPtr<PackingModel<CloudType>>(cstrIter()(dict, owner));
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|