Files
OpenFOAM-12/applications/modules/multiphaseEuler/phaseSystem/diameterModels/linearTsubDiameter/linearTsubDiameter.C
Will Bainbridge 597121a4a7 multiphaseEuler: Library reorganisation
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.
2023-09-15 14:45:26 +01:00

174 lines
4.7 KiB
C++

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2018-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/>.
\*---------------------------------------------------------------------------*/
#include "linearTsubDiameter.H"
#include "phaseSystem.H"
#include "interfaceSaturationTemperatureModel.H"
#include "addToRunTimeSelectionTable.H"
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
namespace Foam
{
namespace diameterModels
{
defineTypeNameAndDebug(linearTsub, 0);
addToRunTimeSelectionTable(diameterModel, linearTsub, dictionary);
}
}
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
Foam::diameterModels::linearTsub::linearTsub
(
const dictionary& diameterProperties,
const phaseModel& phase
)
:
spherical(diameterProperties, phase),
liquidPhaseName_(diameterProperties.lookup("liquidPhase")),
d2_("d2", dimLength, diameterProperties.lookupOrDefault("d2", 0.0015)),
Tsub2_
(
"Tsub2",
dimTemperature,
diameterProperties.lookupOrDefault("Tsub2", 0)
),
d1_("d1", dimLength, diameterProperties.lookupOrDefault("d1", 0.00015)),
Tsub1_
(
"Tsub1",
dimTemperature,
diameterProperties.lookupOrDefault("Tsub1", 13.5)
),
d_
(
IOobject
(
IOobject::groupName("d", phase.name()),
phase.time().name(),
phase.mesh()
),
phase.mesh(),
d1_
)
{
Info<< " d2: " << d2_.value() << endl
<< " Tsub2: " << Tsub2_.value() << endl
<< " d1: " << d1_.value() << endl
<< " Tsub1: " << Tsub1_.value() << endl;
}
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
Foam::diameterModels::linearTsub::~linearTsub()
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
Foam::tmp<Foam::volScalarField> Foam::diameterModels::linearTsub::d() const
{
return d_;
}
void Foam::diameterModels::linearTsub::correct()
{
const phaseSystem& fluid = phase().fluid();
const phaseModel& liquid = fluid.phases()[liquidPhaseName_];
const phaseInterface interface(phase(), liquid);
if
(
fluid.foundInterfacialModel
<
interfaceSaturationTemperatureModel
>(interface)
)
{
const interfaceSaturationTemperatureModel& satModel =
fluid.lookupInterfacialModel
<
interfaceSaturationTemperatureModel
>(interface);
const volScalarField Tsub
(
satModel.Tsat(liquid.thermo().p()) - liquid.thermo().T()
);
d_ = max
(
d1_,
min
(
d2_,
(d1_*(Tsub - Tsub2_) + d2_*(Tsub - Tsub1_))/(Tsub2_ - Tsub1_)
)
);
}
}
bool Foam::diameterModels::linearTsub::read(const dictionary& phaseProperties)
{
spherical::read(phaseProperties);
diameterProperties().lookup("liquidPhase") >> liquidPhaseName_;
d2_ =
dimensionedScalar
(
dimLength,
diameterProperties().lookupOrDefault<scalar>("d2", 0.0015)
);
Tsub2_ =
dimensionedScalar
(
dimTemperature,
diameterProperties().lookupOrDefault<scalar>("Tsub2", 0)
);
d1_ =
dimensionedScalar
(
dimLength,
diameterProperties().lookupOrDefault("d1", 0.00015)
);
Tsub1_ =
dimensionedScalar
(
dimTemperature,
diameterProperties().lookupOrDefault<scalar>("Tsub1", 13.5)
);
return true;
}
// ************************************************************************* //