deposition.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) 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 Class
25  Foam::phaseTransferModels::deposition
26 
27 Description
28  Phase transfer model representing change from a dispersed phase to a film as
29  a result of deposition onto a third phase
30 
31 SourceFiles
32  deposition.C
33 
34 \*---------------------------------------------------------------------------*/
35 
36 #ifndef deposition_H
37 #define deposition_H
38 
39 #include "phaseTransferModel.H"
40 
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 
43 namespace Foam
44 {
45 
46 class phasePair;
47 
48 namespace phaseTransferModels
49 {
50 
51 /*---------------------------------------------------------------------------*\
52  Class deposition Declaration
53 \*---------------------------------------------------------------------------*/
54 
55 class deposition
56 :
57  public phaseTransferModel
58 {
59 private:
60 
61  // Private data
62 
63  //- The name of the phase which deposits
64  const word dropletName_;
65 
66  //- The name of the phase onto which deposition occurs
67  const word surfaceName_;
68 
69  //- The deposition efficiency
70  const scalar efficiency_;
71 
72 
73 public:
74 
75  //- Runtime type information
76  TypeName("deposition");
77 
78 
79  // Constructors
80 
81  //- Construct from components
83  (
84  const dictionary& dict,
85  const phasePair& pair
86  );
87 
88 
89  //- Destructor
90  virtual ~deposition();
91 
92 
93  // Member Functions
94 
95  //- The mass transfer rate
96  virtual tmp<volScalarField> dmdt() const;
97 };
98 
99 
100 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
101 
102 } // End namespace phaseTransferModels
103 } // End namespace Foam
104 
105 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
106 
107 #endif
108 
109 // ************************************************************************* //
dictionary dict
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
TypeName("deposition")
Runtime type information.
deposition(const dictionary &dict, const phasePair &pair)
Construct from components.
A class for handling words, derived from string.
Definition: word.H:59
virtual tmp< volScalarField > dmdt() const
The mass transfer rate.
Phase transfer model representing change from a dispersed phase to a film as a result of deposition o...
Definition: deposition.H:54
A class for managing temporary objects.
Definition: PtrList.H:53
Namespace for OpenFOAM.