Loading...
Searching...
No Matches
Antoine.C
Go to the documentation of this file.
1/*---------------------------------------------------------------------------*\
2 ========= |
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4 \\ / O peration |
5 \\ / A nd | www.openfoam.com
6 \\/ M anipulation |
7-------------------------------------------------------------------------------
8 Copyright (C) 2015-2018 OpenFOAM Foundation
9-------------------------------------------------------------------------------
10License
11 This file is part of OpenFOAM.
12
13 OpenFOAM is free software: you can redistribute it and/or modify it
14 under the terms of the GNU General Public License as published by
15 the Free Software Foundation, either version 3 of the License, or
16 (at your option) any later version.
17
18 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25
26\*---------------------------------------------------------------------------*/
27
28#include "Antoine.H"
31// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
32
33namespace Foam
34{
35namespace saturationModels
36{
39}
40}
41
42
43// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
44
46(
47 const dictionary& dict,
48 const objectRegistry& db
49)
50:
52 A_("A", dimless, dict),
55{}
56
57
58// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
59
61{}
62
63
64// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
65
68(
69 const volScalarField& T
70) const
71{
72 return
74 *exp(A_ + B_/(C_ + T));
75}
76
77
80(
81 const volScalarField& T
82) const
83{
84 return - pSat(T)*B_/sqr(C_ + T);
85}
86
87
90(
91 const volScalarField& T
92) const
93{
94 return A_ + B_/(C_ + T);
95}
96
97
100(
101 const volScalarField& p
102) const
103{
104 return
105 B_/(log(p*dimensionedScalar("one", dimless/dimPressure, 1)) - A_)
106 - C_;
107}
108
109
110// ************************************************************************* //
Macros for easy insertion into run-time selection tables.
#define addToRunTimeSelectionTable(baseType, thisType, argNames)
Add to construction table with typeName as the key.
const objectRegistry & db() const noexcept
Return the local objectRegistry.
Definition IOobject.C:450
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition dictionary.H:133
Registry of regIOobjects.
Antoine equation for the vapour pressure.
Definition Antoine.H:58
dimensionedScalar B_
Constant B.
Definition Antoine.H:71
dimensionedScalar C_
Constant C.
Definition Antoine.H:76
virtual tmp< volScalarField > lnPSat(const volScalarField &T) const
Natural log of the saturation pressure.
Definition Antoine.C:83
Antoine(const dictionary &dict, const objectRegistry &db)
Construct from a dictionary.
Definition Antoine.C:39
virtual tmp< volScalarField > Tsat(const volScalarField &p) const
Saturation temperature.
Definition Antoine.C:93
virtual tmp< volScalarField > pSatPrime(const volScalarField &T) const
Saturation pressure derivetive w.r.t. temperature.
Definition Antoine.C:73
virtual tmp< volScalarField > pSat(const volScalarField &T) const
Saturation pressure.
Definition Antoine.C:61
virtual ~Antoine()
Destructor.
Definition Antoine.C:53
dimensionedScalar A_
Constant A.
Definition Antoine.H:66
A class for managing temporary objects.
Definition tmp.H:75
#define defineTypeNameAndDebug(Type, DebugSwitch)
Define the typeName and debug information.
Definition className.H:142
volScalarField & p
Namespace for OpenFOAM.
const dimensionSet dimPressure
dimensionedScalar exp(const dimensionedScalar &ds)
const dimensionSet dimless
Dimensionless.
dimensionedSymmTensor sqr(const dimensionedVector &dv)
GeometricField< scalar, fvPatchField, volMesh > volScalarField
dimensionedScalar log(const dimensionedScalar &ds)
const dimensionSet dimTemperature(0, 0, 0, 1, 0, 0, 0)
dimensioned< scalar > dimensionedScalar
Dimensioned scalar obtained from generic dimensioned type.
void T(FieldField< Field, Type > &f1, const FieldField< Field, Type > &f2)
dictionary dict