KochFriedlander.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) 2019-2020 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::sinteringModels::KochFriedlander
26 
27 Description
28  Sintering model of Koch and Friedlander (1990). The characteristic time for
29  sintering is given by
30 
31  \f[
32  \tau = c_s d_{p_i}^n T^m \exp\left(\frac{T_a}{T}\right)\;.
33  \f]
34 
35  Reference:
36  \verbatim
37  Koch, W., & Friedlander, S. K. (1990).
38  The effect of particle coalescence on the surface area of a coagulating
39  aerosol.
40  Journal of Colloid and Interface Science, 140(2), 419-427.
41  \endverbatim
42 
43 Usage
44  \table
45  Property | Description | Required | Default value
46  Cs | Sintering time coefficient | yes | none
47  n | Particle diameter exponent | yes | none
48  m | Temperature exponent | yes | none
49  Ta | Activation temperature | yes | none
50  \endtable
51 
52 SourceFiles
53  KochFriedlander.C
54 
55 \*---------------------------------------------------------------------------*/
56 
57 #ifndef KochFriedlander_H
58 #define KochFriedlander_H
59 
60 #include "sinteringModel.H"
61 
62 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
63 
64 namespace Foam
65 {
66 namespace diameterModels
67 {
68 namespace shapeModels
69 {
70 namespace sinteringModels
71 {
72 
73 /*---------------------------------------------------------------------------*\
74  Class KochFriedlander Declaration
75 \*---------------------------------------------------------------------------*/
76 
77 class KochFriedlander
78 :
79  public sinteringModel
80 {
81  // Private Data
82 
83  //- Subdictionary containing model coefficients
84  const dictionary& dict_;
85 
86  //- Sintering time coefficient
87  scalar Cs_;
88 
89  //- Sintering time primary particle diameter exponent
90  scalar n_;
91 
92  //- Sintering time temperature exponent
93  scalar m_;
94 
95  //- Activation temperature
96  scalar Ta_;
97 
98 
99 public:
100 
101  //- Runtime type information
102  TypeName("KochFriedlander");
103 
104 
105  // Constructors
106 
107  //- Construct from a dictionary
109  (
110  const dictionary& dict,
111  const fractal& fractalShape
112  );
113 
114 
115  //- Destructor
116  virtual ~KochFriedlander();
117 
118 
119  // Member Functions
120 
121  //- Characteristic time for sintering
122  virtual tmp<volScalarField::Internal> tau() const;
123 
124  //- Sintering source term
125  virtual tmp<fvScalarMatrix> R() const;
126 };
127 
128 
129 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
130 
131 } // End namespace sinteringModels
132 } // End namespace shapeModels
133 } // End namespace diameterModels
134 } // End namespace Foam
135 
136 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
137 
138 #endif
139 
140 // ************************************************************************* //
dictionary dict
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:158
virtual tmp< volScalarField::Internal > tau() const
Characteristic time for sintering.
KochFriedlander(const dictionary &dict, const fractal &fractalShape)
Construct from a dictionary.
Class for modeling fractal shapes (e.g. of aerosol agglomerates) based on a constant fractal dimensio...
Definition: fractal.H:102
virtual tmp< fvScalarMatrix > R() const
Sintering source term.
A class for managing temporary objects.
Definition: PtrList.H:53
TypeName("KochFriedlander")
Runtime type information.
Namespace for OpenFOAM.