daughterSizeDistributionModel.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) 2017-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::diameterModels::daughterSizeDistributionModel
26 
27 Description
28  Base class for daughter size distribution models. Calculates and stores
29  the contribution to a sizeGroup i due to breakup in a larger sizeGroup k.
30 
31 Usage
32  \table
33  Property | Description | Required | Default value
34  p | daughter particle number | no | 2
35  \endtable
36 
37 SourceFiles
38  daughterSizeDistributionModel.C
39 
40 \*---------------------------------------------------------------------------*/
41 
42 #ifndef daughterSizeDistributionModel_H
43 #define daughterSizeDistributionModel_H
44 
45 #include "dictionary.H"
46 #include "dimensionedScalar.H"
47 
48 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
49 
50 namespace Foam
51 {
52 namespace diameterModels
53 {
54 
55 class breakupModel;
56 
57 /*---------------------------------------------------------------------------*\
58  Class daughterSizeDistributionModel Declaration
59 \*---------------------------------------------------------------------------*/
60 
61 class daughterSizeDistributionModel
62 {
63 protected:
64 
65  // Protected Data
66 
67  //- Reference to the breakupModel
68  const breakupModel& breakup_;
69 
70  //- Number of daughter particles, defaults to binary breakup
72 
73  //- Contribution to sizeGroup i due to breakup in sizeGroup k
75 
76 
77 public:
78 
79  //- Runtime type information
80  TypeName("daughterSizeDistributionModel");
81 
82 
83  // Declare runtime construction
84 
86  (
87  autoPtr,
89  dictionary,
90  (
91  const breakupModel& breakup,
92  const dictionary& dict
93  ),
94  (breakup, dict)
95  );
96 
97 
98  // Constructor
99 
101  (
102  const breakupModel& breakup,
103  const dictionary& dict
104  );
105 
106 
107  //- Destructor
109 
110 
111  // Selectors
112 
114  (
115  const breakupModel& breakup,
116  const dictionary& dict
117  );
118 
119 
120  // Member Functions
121 
122  //- Return contribution to sizeGroup i due to breakup in sizeGroup k
123  const dimensionedScalar& nik(const label i, const label k) const;
124 
125  //- Correct field independent expressions
126  void correct();
127 
128  //- Calculate contribution to sizeGroup i due to breakup in sizeGroup k
129  virtual dimensionedScalar calcNik
130  (
131  const label i,
132  const label k
133  ) const = 0;
134 };
135 
136 
137 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
138 
139 } // End namespace diameterModels
140 } // End namespace Foam
141 
142 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
143 
144 #endif
145 
146 // ************************************************************************* //
TypeName("daughterSizeDistributionModel")
Runtime type information.
dictionary dict
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:158
PtrList< PtrList< dimensionedScalar > > nik_
Contribution to sizeGroup i due to breakup in sizeGroup k.
void correct()
Correct field independent expressions.
declareRunTimeSelectionTable(autoPtr, daughterSizeDistributionModel, dictionary,(const breakupModel &breakup, const dictionary &dict),(breakup, dict))
label k
Boltzmann constant.
Base class for breakup models which give a total breakup rate and a separate daughter size distributi...
Definition: breakupModel.H:52
Base class for daughter size distribution models. Calculates and stores the contribution to a sizeGro...
dimensionedScalar particleNumber_
Number of daughter particles, defaults to binary breakup.
daughterSizeDistributionModel(const breakupModel &breakup, const dictionary &dict)
A templated 1D list of pointers to objects of type <T>, where the size of the array is known and used...
Definition: List.H:70
static autoPtr< daughterSizeDistributionModel > New(const breakupModel &breakup, const dictionary &dict)
virtual dimensionedScalar calcNik(const label i, const label k) const =0
Calculate contribution to sizeGroup i due to breakup in sizeGroup k.
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:52
const breakupModel & breakup_
Reference to the breakupModel.
const dimensionedScalar & nik(const label i, const label k) const
Return contribution to sizeGroup i due to breakup in sizeGroup k.
Namespace for OpenFOAM.