The old fluid-specific rhoThermo has been split into a non-fluid specific part which is still called rhoThermo, and a fluid-specific part called rhoFluidThermo. The rhoThermo interface has been added to the solidThermo model. This permits models and solvers that access the density to operate on both solid and fluid thermophysical models.
114 lines
3.3 KiB
C++
114 lines
3.3 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Copyright (C) 2015-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 "interfaceCompositionModel.H"
|
|
#include "phaseModel.H"
|
|
#include "phaseSystem.H"
|
|
#include "rhoFluidMulticomponentThermo.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
defineTypeNameAndDebug(interfaceCompositionModel, 0);
|
|
defineSidedInterfacialModelTypeNameAndDebug(interfaceCompositionModel, 0);
|
|
defineRunTimeSelectionTable(interfaceCompositionModel, dictionary);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::interfaceCompositionModel::interfaceCompositionModel
|
|
(
|
|
const dictionary& dict,
|
|
const phaseInterface& interface
|
|
)
|
|
:
|
|
interface_
|
|
(
|
|
interface.modelCast<interfaceCompositionModel, sidedPhaseInterface>()
|
|
),
|
|
species_(dict.lookup("species")),
|
|
Le_("Le", dimless, dict),
|
|
thermo_
|
|
(
|
|
refCast<const rhoFluidMulticomponentThermo>(interface_.phase().thermo())
|
|
),
|
|
otherThermo_(interface_.otherPhase().thermo())
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
Foam::interfaceCompositionModel::~interfaceCompositionModel()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
Foam::tmp<Foam::volScalarField> Foam::interfaceCompositionModel::dY
|
|
(
|
|
const word& speciesName,
|
|
const volScalarField& Tf
|
|
) const
|
|
{
|
|
const label speciei = thermo().species()[speciesName];
|
|
|
|
return Yf(speciesName, Tf) - thermo().Y()[speciei];
|
|
}
|
|
|
|
|
|
Foam::tmp<Foam::volScalarField> Foam::interfaceCompositionModel::dYfPrime
|
|
(
|
|
const word& speciesName,
|
|
const volScalarField& Tf
|
|
) const
|
|
{
|
|
return YfPrime(speciesName, Tf);
|
|
}
|
|
|
|
|
|
Foam::tmp<Foam::volScalarField> Foam::interfaceCompositionModel::D
|
|
(
|
|
const word& speciesName
|
|
) const
|
|
{
|
|
const label speciei = thermo().species()[speciesName];
|
|
const volScalarField& p(thermo_.p());
|
|
const volScalarField& T(thermo_.T());
|
|
|
|
return volScalarField::New
|
|
(
|
|
IOobject::groupName("D" + speciesName, interface_.name()),
|
|
thermo().kappai(speciei, p, T)
|
|
/thermo().Cpi(speciei, p, T)
|
|
/thermo().rhoi(speciei, p, T)
|
|
/Le_
|
|
);
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|