growthGroupFractionFvScalarFieldSource.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) 2025-2026 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::growthGroupFractionFvScalarFieldSource
26 
27 Description
28  Base class for source conditions that create a growth source terms in the
29  group fraction equations of a population balance model.
30 
31 SourceFiles
32  growthGroupFractionFvScalarFieldSource.C
33 
34 \*---------------------------------------------------------------------------*/
35 
36 #ifndef growthGroupFractionFvScalarFieldSource_H
37 #define growthGroupFractionFvScalarFieldSource_H
38 
41 
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 
44 namespace Foam
45 {
46 
47 /*---------------------------------------------------------------------------*\
48  Class growthGroupFractionFvScalarFieldSource Declaration
49 \*---------------------------------------------------------------------------*/
50 
52 :
55 {
56 private:
57 
58  // Private Member Functions
59 
60  //- Return the moment of the diameter with which the source term scales
61  virtual label q() const = 0;
62 
63  //- Compute and return the weight for the given group
65  (
66  const fvSource&,
67  const label i
68  ) const;
69 
70 
71 public:
72 
73  // Constructors
74 
75  //- Construct from internal field and dictionary
77  (
79  const dictionary& dict
80  );
81 
82  //- Copy constructor setting internal field reference
84  (
87  );
88 
89 
90  // Member Functions
91 
92  //- Return the internal coefficient
94  (
95  const fvSource& model,
97  ) const;
98 
99  //- Return the source coefficients for exchange with the groups below
100  // and above this group
102  (
103  const fvSource& model
104  ) const;
105 
106  //- Return the combined source coefficient
108  (
109  const fvSource& model,
111  ) const;
112 };
113 
114 
115 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
116 
117 } // End namespace Foam
118 
119 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
120 
121 #endif
122 
123 // ************************************************************************* //
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
An ordered pair of two objects of type <Type> with first() and second() elements.
Definition: Pair.H:67
A list of keywords followed by any number of values (e.g. words and numbers) or sub-dictionaries.
Definition: dictionary.H:162
Base class for finite volume sources.
Definition: fvSource.H:53
Base class for source conditions of properties of the groups in a population balance model.
label i() const
Return the index of this group.
Base class for source conditions which create a growth source terms in the group fraction equations o...
Base class for source conditions that create a growth source terms in the group fraction equations of...
virtual tmp< DimensionedField< scalar, fvMesh > > internalCoeff(const fvSource &model, const DimensionedField< scalar, fvMesh > &source) const
Return the internal coefficient.
virtual tmp< DimensionedField< scalar, fvMesh > > sourceCoeff(const fvSource &model, const DimensionedField< scalar, fvMesh > &source) const
Return the combined source coefficient.
virtual Pair< tmp< DimensionedField< scalar, fvMesh > > > sourceCoeffs(const fvSource &model) const
Return the source coefficients for exchange with the groups below.
growthGroupFractionFvScalarFieldSource(const DimensionedField< scalar, fvMesh > &, const dictionary &dict)
Construct from internal field and dictionary.
A class for managing temporary objects.
Definition: tmp.H:55
Namespace for OpenFOAM.
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
dictionary dict