Raoult.H
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-2023 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::interfaceCompositionModels::Raoult
26 
27 Description
28  Raoult's law of ideal mixing. A separate composition model is given for
29  each species. The composition of a species is equal to the value given by
30  the model scaled by the species fraction in the bulk of the other phase.
31 
32 SourceFiles
33  Raoult.C
34 
35 \*---------------------------------------------------------------------------*/
36 
37 #ifndef Raoult_H
38 #define Raoult_H
39 
41 
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 
44 namespace Foam
45 {
46 namespace interfaceCompositionModels
47 {
48 
49 /*---------------------------------------------------------------------------*\
50  Class Raoult Declaration
51 \*---------------------------------------------------------------------------*/
52 
53 class Raoult
54 :
56 {
57  // Private Data
58 
59  //- Non-vapour species fraction
60  volScalarField YNonVapour_;
61 
62  //- Non-vapour species fraction derivative w.r.t. temperature
63  volScalarField YNonVapourPrime_;
64 
65  //- Species' individual composition models
67 
68 
69 public:
70 
71  //- Runtime type information
72  TypeName("Raoult");
73 
74 
75  // Constructors
76 
77  //- Construct from a dictionary and an interface
78  Raoult
79  (
80  const dictionary& dict,
82  );
83 
84 
85  //- Destructor
86  virtual ~Raoult();
87 
88 
89  // Member Functions
90 
91  //- Update the composition
92  virtual void update(const volScalarField& Tf);
93 
94  //- The interface species fraction
95  virtual tmp<volScalarField> Yf
96  (
97  const word& speciesName,
98  const volScalarField& Tf
99  ) const;
100 
101  //- The interface species fraction derivative w.r.t. temperature
103  (
104  const word& speciesName,
105  const volScalarField& Tf
106  ) const;
107 };
108 
109 
110 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
111 
112 } // End namespace interfaceCompositionModels
113 } // End namespace Foam
114 
115 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
116 
117 #endif
118 
119 // ************************************************************************* //
Generic GeometricField class.
An STL-conforming hash table.
Definition: HashTable.H:127
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
Generic base class for interface composition models. These models describe the composition in phase 1...
const sidedPhaseInterface & interface() const
Return the interface.
Raoult's law of ideal mixing. A separate composition model is given for each species....
Definition: Raoult.H:55
TypeName("Raoult")
Runtime type information.
Raoult(const dictionary &dict, const phaseInterface &interface)
Construct from a dictionary and an interface.
Definition: Raoult.C:44
virtual ~Raoult()
Destructor.
Definition: Raoult.C:93
virtual void update(const volScalarField &Tf)
Update the composition.
Definition: Raoult.C:99
virtual tmp< volScalarField > Yf(const word &speciesName, const volScalarField &Tf) const
The interface species fraction.
Definition: Raoult.C:124
virtual tmp< volScalarField > YfPrime(const word &speciesName, const volScalarField &Tf) const
The interface species fraction derivative w.r.t. temperature.
Definition: Raoult.C:144
Class to represent an interface between phases. Derivations can further specify the configuration of ...
A class for managing temporary objects.
Definition: tmp.H:55
A class for handling words, derived from string.
Definition: word.H:62
Namespace for OpenFOAM.
dictionary dict