constantSaturationConditions.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2015-2018 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
11  OpenFOAM is free software: you can redistribute it and/or modify it
12  under the terms of the GNU General Public License as published by
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
16  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19  for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 \*---------------------------------------------------------------------------*/
25 
28 
29 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
30 
31 namespace Foam
32 {
33 namespace saturationModels
34 {
35  defineTypeNameAndDebug(constantSaturationConditions, 0);
37  (
38  saturationModel,
39  constantSaturationConditions,
40  dictionary
41  );
42 }
43 }
44 
45 
46 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
47 
50 (
51  const dictionary& dict,
52  const objectRegistry& db
53 )
54 :
55  saturationModel(db),
56  pSat_("pSat", dimPressure, dict),
57  Tsat_("Tsat", dimTemperature, dict)
58 {}
59 
60 
61 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
62 
65 {}
66 
67 
68 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
69 
72 (
73  const volScalarField& T
74 ) const
75 {
76  return tmp<volScalarField>
77  (
78  new volScalarField
79  (
80  IOobject
81  (
82  "pSat",
83  T.mesh().time().timeName(),
84  T.mesh(),
87  false
88  ),
89  T.mesh(),
90  pSat_
91  )
92  );
93 }
94 
95 
98 (
99  const volScalarField& T
100 ) const
101 {
102  return tmp<volScalarField>
103  (
104  new volScalarField
105  (
106  IOobject
107  (
108  "pSatPrime",
109  T.mesh().time().timeName(),
110  T.mesh(),
113  false
114  ),
115  T.mesh(),
117  )
118  );
119 }
120 
121 
124 (
125  const volScalarField& T
126 ) const
127 {
128  return tmp<volScalarField>
129  (
130  new volScalarField
131  (
132  IOobject
133  (
134  "lnPSat",
135  T.mesh().time().timeName(),
136  T.mesh(),
139  false
140  ),
141  T.mesh(),
142  dimensionedScalar("lnPSat", dimless, log(pSat_.value()))
143  )
144  );
145 }
146 
147 
150 (
151  const volScalarField& p
152 ) const
153 {
154  return tmp<volScalarField>
155  (
156  new volScalarField
157  (
158  IOobject
159  (
160  "Tsat",
161  p.mesh().time().timeName(),
162  p.mesh(),
165  false
166  ),
167  p.mesh(),
168  Tsat_
169  )
170  );
171 }
172 
173 
174 // ************************************************************************* //
dictionary dict
dimensionedScalar log(const dimensionedScalar &ds)
virtual tmp< volScalarField > pSat(const volScalarField &T) const
Saturation pressure.
IOobject(const word &name, const fileName &instance, const objectRegistry &registry, readOption r=NO_READ, writeOption w=NO_WRITE, bool registerObject=true)
Construct from name, instance, registry, io options.
Definition: IOobject.C:209
virtual tmp< volScalarField > Tsat(const volScalarField &p) const
Saturation temperature.
Macros for easy insertion into run-time selection tables.
GeometricField< scalar, fvPatchField, volMesh > volScalarField
Definition: volFieldsFwd.H:52
const dimensionSet dimTemperature(0, 0, 0, 1, 0, 0, 0)
Definition: dimensionSets.H:52
virtual tmp< volScalarField > pSatPrime(const volScalarField &T) const
Saturation pressure derivetive w.r.t. temperature.
constantSaturationConditions(const dictionary &dict, const objectRegistry &db)
Construct from a dictionary.
const dimensionSet dimPressure
virtual tmp< volScalarField > lnPSat(const volScalarField &T) const
Natural log of the saturation pressure.
addToRunTimeSelectionTable(ensightPart, ensightPartCells, istream)
defineTypeNameAndDebug(combustionModel, 0)
const dimensionSet dimless(0, 0, 0, 0, 0, 0, 0)
Definition: dimensionSets.H:47
dimensioned< scalar > dimensionedScalar
Dimensioned scalar obtained from generic dimensioned type.
A class for managing temporary objects.
Definition: PtrList.H:53
Namespace for OpenFOAM.