Loading...
Searching...
No Matches
ArdenBuck.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 "ArdenBuck.H"
31// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
32
33namespace Foam
34{
35namespace saturationModels
38 addToRunTimeSelectionTable(saturationModel, ArdenBuck, dictionary);
40}
41
42static const Foam::dimensionedScalar zeroC("", Foam::dimTemperature, 273.15);
43static const Foam::dimensionedScalar A("", Foam::dimPressure, 611.21);
44static const Foam::dimensionedScalar B("", Foam::dimless, 18.678);
45static const Foam::dimensionedScalar C("", Foam::dimTemperature, 234.5);
46static const Foam::dimensionedScalar D("", Foam::dimTemperature, 257.14);
47
48// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
49
51Foam::saturationModels::ArdenBuck::xByTC
52(
53 const volScalarField& TC
54) const
56 return (B - TC/C)/(D + TC);
57}
58
59
60// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
61
63(
64 const dictionary& dict,
65 const objectRegistry& db
66)
68 saturationModel(db)
69{}
70
71
72// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
73
75{}
76
77
78// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
79
82(
83 const volScalarField& T
84) const
85{
87
88 return A*exp(TC*xByTC(TC));
89}
90
91
94(
95 const volScalarField& T
96) const
97{
99
100 volScalarField x(xByTC(TC));
101
102 return A*exp(TC*x)*(D*x - TC/C)/(D + TC);
103}
104
105
108(
109 const volScalarField& T
110) const
111{
113
114 return log(A.value()) + TC*xByTC(TC);
115}
116
117
120(
121 const volScalarField& p
122) const
123{
125
126 return volScalarField::null();
127}
128
129
130// ************************************************************************* //
static const Foam::dimensionedScalar C("", Foam::dimTemperature, 234.5)
static const Foam::dimensionedScalar A("", Foam::dimPressure, 611.21)
static const Foam::dimensionedScalar zeroC("", Foam::dimTemperature, 273.15)
static const Foam::dimensionedScalar D("", Foam::dimTemperature, 257.14)
static const Foam::dimensionedScalar B("", Foam::dimless, 18.678)
Macros for easy insertion into run-time selection tables.
#define addToRunTimeSelectionTable(baseType, thisType, argNames)
Add to construction table with typeName as the key.
Graphite solid properties.
Definition C.H:49
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.
ArdenBuck equation for the vapour pressure of moist air.
Definition ArdenBuck.H:51
virtual tmp< volScalarField > lnPSat(const volScalarField &T) const
Natural log of the saturation pressure.
Definition ArdenBuck.C:101
ArdenBuck(const dictionary &dict, const objectRegistry &db)
Construct from a dictionary.
Definition ArdenBuck.C:56
virtual tmp< volScalarField > Tsat(const volScalarField &p) const
Saturation temperature.
Definition ArdenBuck.C:113
virtual tmp< volScalarField > pSatPrime(const volScalarField &T) const
Saturation pressure derivetive w.r.t. temperature.
Definition ArdenBuck.C:87
virtual tmp< volScalarField > pSat(const volScalarField &T) const
Saturation pressure.
Definition ArdenBuck.C:75
virtual ~ArdenBuck()
Destructor.
Definition ArdenBuck.C:67
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
#define NotImplemented
Issue a FatalErrorIn for a function not currently implemented.
Definition error.H:688
Namespace for OpenFOAM.
const dimensionSet dimPressure
dimensionedScalar exp(const dimensionedScalar &ds)
const dimensionSet dimless
Dimensionless.
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
const dimensionedScalar & D