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-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::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 namespace phaseTransferModels
46 {
47 
48 /*---------------------------------------------------------------------------*\
49  Class deposition Declaration
50 \*---------------------------------------------------------------------------*/
51 
52 class deposition
53 :
54  public phaseTransferModel
55 {
56 private:
57 
58  // Private Data
59 
60  //- Interface
61  const phaseInterface interface_;
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 a dictionary and an interface
83  (
84  const dictionary& dict,
85  const phaseInterface& interface
86  );
87 
88 
89  //- Destructor
90  virtual ~deposition();
91 
92 
93  // Member Functions
94 
95  //- Whether or not there is a mass transfer rate for the mixture
96  virtual bool mixture() const;
97 
98  //- The mass transfer rate for the mixture
99  virtual tmp<volScalarField> dmdtf() const;
100 };
101 
102 
103 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
104 
105 } // End namespace phaseTransferModels
106 } // End namespace Foam
107 
108 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
109 
110 #endif
111 
112 // ************************************************************************* //
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
Class to represent an interface between phases. Derivations can further specify the configuration of ...
Phase transfer model representing change from a dispersed phase to a film as a result of deposition o...
Definition: deposition.H:54
deposition(const dictionary &dict, const phaseInterface &interface)
Construct from a dictionary and an interface.
Definition: deposition.C:45
virtual bool mixture() const
Whether or not there is a mass transfer rate for the mixture.
Definition: deposition.C:66
TypeName("deposition")
Runtime type information.
virtual tmp< volScalarField > dmdtf() const
The mass transfer rate for the mixture.
Definition: deposition.C:73
virtual ~deposition()
Destructor.
Definition: deposition.C:60
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