mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
- Thermal phase change and wall boiling functionality has been generalized to support two- and multi- phase simulations. - Thermal phase change now also allows purePhaseModel, which simplifies case setup. - The phaseSystem templates have been restructured in preparation of multiple simultaneous mass transfer mechanisms. For example, combination of thermal phase and inhomogeneous population balance models. Patch contributed by VTT Technical Research Centre of Finland Ltd and Institute of Fluid Dynamics, Helmholtz-Zentrum Dresden - Rossendorf (HZDR).
147 lines
3.5 KiB
C
Executable File
147 lines
3.5 KiB
C
Executable File
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2017 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 "function1.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace saturationModels
|
|
{
|
|
defineTypeNameAndDebug(function1, 0);
|
|
addToRunTimeSelectionTable(saturationModel, function1, dictionary);
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::saturationModels::function1::function1
|
|
(
|
|
const dictionary& dict,
|
|
const objectRegistry& db
|
|
)
|
|
:
|
|
saturationModel(db),
|
|
function_
|
|
(
|
|
Function1<scalar>::New("function", dict)
|
|
)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
Foam::saturationModels::function1::~function1()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
Foam::tmp<Foam::volScalarField>
|
|
Foam::saturationModels::function1::pSat
|
|
(
|
|
const volScalarField& T
|
|
) const
|
|
{
|
|
NotImplemented;
|
|
return volScalarField::null();
|
|
}
|
|
|
|
|
|
Foam::tmp<Foam::volScalarField>
|
|
Foam::saturationModels::function1::pSatPrime
|
|
(
|
|
const volScalarField& T
|
|
) const
|
|
{
|
|
NotImplemented;
|
|
return volScalarField::null();
|
|
}
|
|
|
|
|
|
Foam::tmp<Foam::volScalarField>
|
|
Foam::saturationModels::function1::lnPSat
|
|
(
|
|
const volScalarField& T
|
|
) const
|
|
{
|
|
NotImplemented;
|
|
return volScalarField::null();
|
|
}
|
|
|
|
|
|
Foam::tmp<Foam::volScalarField>
|
|
Foam::saturationModels::function1::Tsat
|
|
(
|
|
const volScalarField& p
|
|
) const
|
|
{
|
|
tmp<volScalarField> tTsat
|
|
(
|
|
new volScalarField
|
|
(
|
|
IOobject
|
|
(
|
|
"Tsat",
|
|
p.mesh().time().timeName(),
|
|
p.mesh(),
|
|
IOobject::NO_READ,
|
|
IOobject::NO_WRITE
|
|
),
|
|
p.mesh(),
|
|
dimensionedScalar("zero", dimTemperature, 0)
|
|
)
|
|
);
|
|
|
|
volScalarField& Tsat = tTsat.ref();
|
|
|
|
forAll(Tsat, celli)
|
|
{
|
|
Tsat[celli] = function_->value(p[celli]);
|
|
}
|
|
|
|
volScalarField::Boundary& TsatBf = Tsat.boundaryFieldRef();
|
|
|
|
forAll(Tsat.boundaryField(), patchi)
|
|
{
|
|
scalarField& Tsatp = TsatBf[patchi];
|
|
const scalarField& pp = p.boundaryField()[patchi];
|
|
|
|
forAll(Tsatp, facei)
|
|
{
|
|
Tsatp[facei] = function_->value(pp[facei]);
|
|
|
|
}
|
|
}
|
|
|
|
return tTsat;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|