constantSaturationConditions.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
30
31// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
32
33namespace Foam
34{
35namespace saturationModels
36{
39 (
43 );
44}
45}
46
47
48// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
49
50Foam::saturationModels::constantSaturationConditions::
51constantSaturationConditions
52(
53 const dictionary& dict,
54 const objectRegistry& db
55)
56:
58 pSat_("pSat", dimPressure, dict),
59 Tsat_("Tsat", dimTemperature, dict)
60{}
61
62
63// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
64
67{}
68
69
70// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
71
74(
75 const volScalarField& T
76) const
77{
79 (
80 "pSat",
81 T.mesh(),
82 pSat_
83 );
84}
85
86
89(
90 const volScalarField& T
91) const
92{
94 (
95 "pSatPrime",
96 T.mesh(),
98 );
99}
100
101
104(
105 const volScalarField& T
106) const
107{
109 (
110 "lnPSat",
111 T.mesh(),
112 dimensionedScalar("log", dimless, log(pSat_.value()))
113 );
114}
115
116
119(
120 const volScalarField& p
121) const
122{
124 (
125 "Tsat",
126 p.mesh(),
127 Tsat_
128 );
129}
130
131
132// ************************************************************************* //
Macros for easy insertion into run-time selection tables.
#define addToRunTimeSelectionTable(baseType, thisType, argNames)
Add to construction table with typeName as the key.
static autoPtr< Time > New()
Construct (dummy) Time - no functionObjects or libraries.
Definition: Time.C:717
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition: dictionary.H:126
Registry of regIOobjects.
Constant saturation pressure and temperature.
virtual tmp< volScalarField > lnPSat(const volScalarField &T) const
Natural log of the saturation pressure.
virtual tmp< volScalarField > Tsat(const volScalarField &p) const
Saturation temperature.
virtual tmp< volScalarField > pSatPrime(const volScalarField &T) const
Saturation pressure derivetive w.r.t. temperature.
virtual tmp< volScalarField > pSat(const volScalarField &T) const
Saturation pressure.
A class for managing temporary objects.
Definition: tmp.H:65
#define defineTypeNameAndDebug(Type, DebugSwitch)
Define the typeName and debug information.
Definition: className.H:121
volScalarField & p
const volScalarField & T
Namespace for OpenFOAM.
const dimensionSet dimPressure
const dimensionSet dimless
Dimensionless.
dimensionedScalar log(const dimensionedScalar &ds)
const dimensionSet dimTemperature(0, 0, 0, 1, 0, 0, 0)
Definition: dimensionSets.H:54
dictionary dict