This change makes multiphaseEuler more consistent with other modules and makes its sub-libraries less inter-dependent. Some left-over references to multiphaseEulerFoam have also been removed.
149 lines
3.7 KiB
C++
149 lines
3.7 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Copyright (C) 2017-2023 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/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
// * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * * //
|
|
|
|
inline Foam::label
|
|
Foam::diameterModels::populationBalanceModel::sourceUpdateInterval() const
|
|
{
|
|
return
|
|
mesh_.solution().solverDict(name_)
|
|
.lookupOrDefault<label>("sourceUpdateInterval", 1);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
inline const Foam::phaseSystem&
|
|
Foam::diameterModels::populationBalanceModel::fluid() const
|
|
{
|
|
return fluid_;
|
|
}
|
|
|
|
|
|
inline const Foam::phaseSystem::dmdtfTable&
|
|
Foam::diameterModels::populationBalanceModel::dmdtfs() const
|
|
{
|
|
return dmdtfs_;
|
|
}
|
|
|
|
|
|
inline const Foam::fvMesh&
|
|
Foam::diameterModels::populationBalanceModel::mesh() const
|
|
{
|
|
return mesh_;
|
|
}
|
|
|
|
|
|
inline const Foam::dictionary&
|
|
Foam::diameterModels::populationBalanceModel::dict() const
|
|
{
|
|
return dict_;
|
|
}
|
|
|
|
|
|
inline Foam::label Foam::diameterModels::populationBalanceModel::nCorr() const
|
|
{
|
|
return mesh_.solution().solverDict(name_).lookup<label>("nCorr");
|
|
}
|
|
|
|
|
|
inline Foam::Switch
|
|
Foam::diameterModels::populationBalanceModel::solveOnFinalIterOnly() const
|
|
{
|
|
return
|
|
mesh_.solution().solverDict(name_).lookupOrDefault<bool>
|
|
(
|
|
"solveOnFinalIterOnly",
|
|
false
|
|
);
|
|
}
|
|
|
|
|
|
inline const Foam::phaseModel&
|
|
Foam::diameterModels::populationBalanceModel::continuousPhase() const
|
|
{
|
|
return continuousPhase_;
|
|
}
|
|
|
|
|
|
inline const Foam::UPtrList<Foam::diameterModels::sizeGroup>&
|
|
Foam::diameterModels::populationBalanceModel::sizeGroups() const
|
|
{
|
|
return sizeGroups_;
|
|
}
|
|
|
|
|
|
inline const Foam::volScalarField&
|
|
Foam::diameterModels::populationBalanceModel::Sp(const label i) const
|
|
{
|
|
return Sp_[i];
|
|
}
|
|
|
|
|
|
inline const Foam::List<Foam::Pair<Foam::label>>&
|
|
Foam::diameterModels::populationBalanceModel::coalescencePairs() const
|
|
{
|
|
return coalescencePairs_;
|
|
}
|
|
|
|
|
|
inline const Foam::List<Foam::Pair<Foam::label>>&
|
|
Foam::diameterModels::populationBalanceModel::binaryBreakupPairs() const
|
|
{
|
|
return binaryBreakupPairs_;
|
|
}
|
|
|
|
|
|
inline const Foam::volScalarField&
|
|
Foam::diameterModels::populationBalanceModel::alphas() const
|
|
{
|
|
if (velocityGroupPtrs_.size() > 1)
|
|
{
|
|
return alphas_();
|
|
}
|
|
else
|
|
{
|
|
return velocityGroupPtrs_.begin()()->phase();
|
|
}
|
|
}
|
|
|
|
|
|
inline const Foam::volVectorField&
|
|
Foam::diameterModels::populationBalanceModel::U() const
|
|
{
|
|
if (velocityGroupPtrs_.size() > 1)
|
|
{
|
|
return U_();
|
|
}
|
|
else
|
|
{
|
|
return velocityGroupPtrs_.begin()()->phase().U();
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|