Antoine.H
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 Class
25  Foam::saturationModels::Antoine
26 
27 Description
28  Antoine equation for the vapour pressure.
29 
30  \f[
31  \log p = A + \frac{B}{C + T}
32  \f]
33 
34  Coefficients \f$A\f$, \f$B\f$ and \f$C\f$ are to be supplied and should be
35  suitable for natural logarithms and temperatures in Kelvin.
36 
37 SourceFiles
38  Antoine.C
39 
40 \*---------------------------------------------------------------------------*/
41 
42 #ifndef Antoine_H
43 #define Antoine_H
44 
45 #include "saturationModel.H"
46 
47 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
48 
49 namespace Foam
50 {
51 namespace saturationModels
52 {
53 
54 /*---------------------------------------------------------------------------*\
55  Class Antoine Declaration
56 \*---------------------------------------------------------------------------*/
57 
58 class Antoine
59 :
60  public saturationModel
61 {
62 protected:
63 
64  // Protected data
65 
66  //- Constant A
68 
69  //- Constant B
71 
72  //- Constant C
74 
75 
76 public:
77 
78  //- Runtime type information
79  TypeName("Antoine");
80 
81  // Constructors
82 
83  //- Construct from a dictionary
84  Antoine(const dictionary& dict);
85 
86 
87  //- Destructor
88  virtual ~Antoine();
89 
90 
91  // Member Functions
92 
93  //- Saturation pressure
94  virtual tmp<volScalarField> pSat(const volScalarField& T) const;
95 
96  //- Saturation pressure derivetive w.r.t. temperature
97  virtual tmp<volScalarField> pSatPrime(const volScalarField& T) const;
98 
99  //- Natural log of the saturation pressure
100  virtual tmp<volScalarField> lnPSat(const volScalarField& T) const;
101 
102  //- Saturation temperature
103  virtual tmp<volScalarField> Tsat(const volScalarField& p) const;
104 };
105 
106 
107 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
108 
109 } // End namespace saturationModels
110 } // End namespace Foam
111 
112 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
113 
114 #endif
115 
116 // ************************************************************************* //
Foam::saturationModels::Antoine::B_
dimensionedScalar B_
Constant B.
Definition: Antoine.H:69
p
p
Definition: pEqn.H:62
Foam::tmp
A class for managing temporary objects.
Definition: PtrList.H:118
Foam::saturationModel
Definition: saturationModel.H:50
Foam::saturationModels::Antoine
Antoine equation for the vapour pressure.
Definition: Antoine.H:57
Foam::saturationModels::Antoine::lnPSat
virtual tmp< volScalarField > lnPSat(const volScalarField &T) const
Natural log of the saturation pressure.
Foam::saturationModels::Antoine::C_
dimensionedScalar C_
Constant C.
Definition: Antoine.H:72
Foam::saturationModels::Antoine::Tsat
virtual tmp< volScalarField > Tsat(const volScalarField &p) const
Saturation temperature.
Foam::saturationModels::Antoine::Antoine
Antoine(const dictionary &dict)
Construct from a dictionary.
Foam::saturationModels::Antoine::TypeName
TypeName("Antoine")
Runtime type information.
saturationModel.H
Foam::saturationModels::Antoine::pSatPrime
virtual tmp< volScalarField > pSatPrime(const volScalarField &T) const
Saturation pressure derivetive w.r.t. temperature.
Foam::T
void T(FieldField< Field, Type > &f1, const FieldField< Field, Type > &f2)
Definition: FieldFieldFunctions.C:55
dict
dictionary dict
Definition: searchingEngine.H:14
Foam::dictionary
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:137
Foam::dimensioned
Generic dimensioned Type class.
Definition: dimensionedScalarFwd.H:41
Foam
Namespace for OpenFOAM.
Definition: combustionModel.C:30
Foam::saturationModels::Antoine::~Antoine
virtual ~Antoine()
Destructor.
Foam::saturationModels::Antoine::pSat
virtual tmp< volScalarField > pSat(const volScalarField &T) const
Saturation pressure.
Foam::GeometricField
Generic GeometricField class.
Definition: surfaceFieldsFwd.H:52
Foam::saturationModels::Antoine::A_
dimensionedScalar A_
Constant A.
Definition: Antoine.H:66