AntoineExtended.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 | Copyright (C) 2015 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 
26 #include "AntoineExtended.H"
28 
29 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
30 
31 namespace Foam
32 {
33 namespace saturationModels
34 {
35  defineTypeNameAndDebug(AntoineExtended, 0);
37  (
38  saturationModel,
39  AntoineExtended,
40  dictionary
41  );
42 }
43 }
44 
45 
46 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
47 
49 (
50  const dictionary& dict
51 )
52 :
53  Antoine(dict),
54  D_("D", dimless, dict),
55  F_("F", dimless, dict),
56  E_("E", dimless/pow(dimTemperature, F_), dict)
57 {}
58 
59 
60 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
61 
63 {}
64 
65 
66 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
67 
70 (
71  const volScalarField& T
72 ) const
73 {
74  return
76  *exp(A_ + B_/(C_ + T) + E_*pow(T, F_))
77  *pow(T, D_);
78 }
79 
80 
83 (
84  const volScalarField& T
85 ) const
86 {
87  return pSat(T)*((D_ + E_*F_*pow(T, F_))/T - B_/sqr(C_ + T));
88 }
89 
90 
93 (
94  const volScalarField& T
95 ) const
96 {
97  return
98  A_
99  + B_/(C_ + T)
100  + D_*log(T*dimensionedScalar("one", dimless/dimTemperature, 1))
101  + E_*pow(T, F_);
102 }
103 
104 
107 (
108  const volScalarField& p
109 ) const
110 {
112 
113  return volScalarField::null();
114 }
115 
116 
117 // ************************************************************************* //
dictionary dict
dimensionedScalar log(const dimensionedScalar &ds)
virtual tmp< volScalarField > lnPSat(const volScalarField &T) const
Natural log of the saturation pressure.
virtual ~AntoineExtended()
Destructor.
dimensionedSymmTensor sqr(const dimensionedVector &dv)
dimensionedScalar C_
Constant C.
Definition: Antoine.H:72
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
dimensionedScalar exp(const dimensionedScalar &ds)
const dimensionSet dimTemperature(0, 0, 0, 1, 0, 0, 0)
Definition: dimensionSets.H:52
const dimensionSet dimPressure
virtual tmp< volScalarField > pSat(const volScalarField &T) const
Saturation pressure.
addToRunTimeSelectionTable(ensightPart, ensightPartCells, istream)
defineTypeNameAndDebug(combustionModel, 0)
virtual tmp< volScalarField > pSat(const volScalarField &T) const
Saturation pressure.
virtual tmp< volScalarField > pSatPrime(const volScalarField &T) const
Saturation pressure derivetive w.r.t. temperature.
void T(FieldField< Field, Type > &f1, const FieldField< Field, Type > &f2)
static const GeometricField< scalar, fvPatchField, volMesh > & null()
Return a null geometric field.
dimensionedScalar pow(const dimensionedScalar &ds, const dimensionedScalar &expt)
const dimensionSet dimless(0, 0, 0, 0, 0, 0, 0)
Definition: dimensionSets.H:47
dimensioned< scalar > dimensionedScalar
Dimensioned scalar obtained from generic dimensioned type.
AntoineExtended(const dictionary &dict)
Construct from a dictionary.
dimensionedScalar B_
Constant B.
Definition: Antoine.H:69
volScalarField & p
A class for managing temporary objects.
Definition: PtrList.H:54
#define NotImplemented
Issue a FatalErrorIn for a function not currently implemented.
Definition: error.H:366
dimensionedScalar A_
Constant A.
Definition: Antoine.H:66
Namespace for OpenFOAM.