for thermophysical transport within stationary solid phases. This provides a consistent interface to heat transport within solids for single and now multiphase solvers so that for example the wallHeatFlux functionObject can now be used with multiphaseEuler, see tutorials/multiphaseEuler/boilingBed. Also this development supports anisotropic thermal conductivity within the stationary solid regions which was not possible previously. The tutorials/multiphaseEuler/bed and tutorials/multiphaseEuler/boilingBed tutorial cases have been updated for phaseSolidThermophysicalTransportModel by changing the thermo type in physicalProperties.solid to heSolidThermo. This change will need to be made to all multiphaseEuler cases involving stationary phases.
174 lines
4.7 KiB
C++
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.fluidThermo().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;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|