mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Currently this is implemented only for the Antoine equation, for the other more complex models an iterative inversion from pressure to temperature is required.
128 lines
3.3 KiB
C
128 lines
3.3 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2015 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 "ArdenBuck.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace saturationModels
|
|
{
|
|
defineTypeNameAndDebug(ArdenBuck, 0);
|
|
addToRunTimeSelectionTable(saturationModel, ArdenBuck, dictionary);
|
|
}
|
|
}
|
|
|
|
static const Foam::dimensionedScalar zeroC("", Foam::dimTemperature, 273.15);
|
|
static const Foam::dimensionedScalar A("", Foam::dimPressure, 611.21);
|
|
static const Foam::dimensionedScalar B("", Foam::dimless, 18.678);
|
|
static const Foam::dimensionedScalar C("", Foam::dimTemperature, 234.5);
|
|
static const Foam::dimensionedScalar D("", Foam::dimTemperature, 257.14);
|
|
|
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
|
|
|
Foam::tmp<Foam::volScalarField>
|
|
Foam::saturationModels::ArdenBuck::xByTC
|
|
(
|
|
const volScalarField& TC
|
|
) const
|
|
{
|
|
return (B - TC/C)/(D + TC);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::saturationModels::ArdenBuck::ArdenBuck(const dictionary& dict)
|
|
:
|
|
saturationModel()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
Foam::saturationModels::ArdenBuck::~ArdenBuck()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
Foam::tmp<Foam::volScalarField>
|
|
Foam::saturationModels::ArdenBuck::pSat
|
|
(
|
|
const volScalarField& T
|
|
) const
|
|
{
|
|
volScalarField TC(T - zeroC);
|
|
|
|
return A*exp(TC*xByTC(TC));
|
|
}
|
|
|
|
|
|
Foam::tmp<Foam::volScalarField>
|
|
Foam::saturationModels::ArdenBuck::pSatPrime
|
|
(
|
|
const volScalarField& T
|
|
) const
|
|
{
|
|
volScalarField TC(T - zeroC);
|
|
|
|
volScalarField x(xByTC(TC));
|
|
|
|
return A*exp(TC*x)*(D*x - TC/C)/(D + TC);
|
|
}
|
|
|
|
|
|
Foam::tmp<Foam::volScalarField>
|
|
Foam::saturationModels::ArdenBuck::lnPSat
|
|
(
|
|
const volScalarField& T
|
|
) const
|
|
{
|
|
volScalarField TC(T - zeroC);
|
|
|
|
return log(A.value()) + TC*xByTC(TC);
|
|
}
|
|
|
|
|
|
Foam::tmp<Foam::volScalarField>
|
|
Foam::saturationModels::ArdenBuck::Tsat
|
|
(
|
|
const volScalarField& p
|
|
) const
|
|
{
|
|
notImplemented
|
|
(
|
|
"saturationModels::ArdenBuck::Tsat(const volScalarField& p)"
|
|
);
|
|
|
|
return volScalarField::null();
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|