distributionSizeGroupFvScalarFieldSource.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) 2024-2025 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::distributionSizeGroupFvScalarFieldSource
26 
27 Description
28  Source condition for size-group fractions that sets values corresponding
29  to a given distribution
30 
31 Usage
32  Example of the source condition specification:
33  \verbatim
34  <sourceName>
35  {
36  type distributionSizeGroup;
37  distribution
38  {
39  type RosinRammler;
40  Q 0;
41  min 1 [mm];
42  max 15 [mm];
43  d 14 [mm];
44  n 2 [];
45  }
46  }
47  \endverbatim
48 
49 SourceFiles
50  distributionSizeGroupFvScalarFieldSource.C
51 
52 \*---------------------------------------------------------------------------*/
53 
54 #ifndef distributionSizeGroupFvScalarFieldSource_H
55 #define distributionSizeGroupFvScalarFieldSource_H
56 
57 #include "fvFieldSources.H"
58 #include "distribution.H"
59 
60 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
61 
62 namespace Foam
63 {
64 
65 /*---------------------------------------------------------------------------*\
66  Class distributionSizeGroupFvScalarFieldSource Declaration
67 \*---------------------------------------------------------------------------*/
68 
70 :
71  public fvScalarFieldSource
72 {
73 private:
74 
75  // Private Data
76 
77  //- Distribution
78  const autoPtr<distribution> distribution_;
79 
80  //- Cached allocation coefficient value. Calculated on demand.
81  mutable autoPtr<scalar> etaPtr_;
82 
83 
84  // Private Member Functions
85 
86  //- Return the allocation coefficient value
87  scalar eta(const fvSource& model) const;
88 
89 
90 public:
91 
92  //- Runtime type information
93  TypeName("distributionSizeGroup");
94 
95 
96  // Constructors
97 
98  //- Construct from internal field and dictionary
100  (
102  const dictionary& dict
103  );
104 
105  //- Copy constructor setting internal field reference
107  (
110  );
111 
112  //- Construct and return a clone setting internal field reference
114  (
116  ) const
117  {
119  (
121  (
122  *this,
123  iF
124  )
125  );
126  }
127 
128 
129  //- Destructor
131 
132 
133  // Member Functions
134 
135  //- Return the source value
137  (
138  const fvSource& model,
140  ) const;
141 
142  //- Return the source value
144  (
145  const fvSource& model,
146  const scalarField& source,
147  const labelUList& cells
148  ) const;
149 
150  //- Return the internal coefficient
152  (
153  const fvSource& model,
155  ) const;
156 
157  //- Return the internal coefficient
159  (
160  const fvSource& model,
161  const scalarField& source,
162  const labelUList& cells
163  ) const;
164 
165  //- Write
166  virtual void write(Ostream&) const;
167 };
168 
169 
170 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
171 
172 } // End namespace Foam
173 
174 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
175 
176 #endif
177 
178 // ************************************************************************* //
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:57
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: autoPtr.H:51
A list of keywords followed by any number of values (e.g. words and numbers) or sub-dictionaries.
Definition: dictionary.H:162
Source condition for size-group fractions that sets values corresponding to a given distribution.
virtual autoPtr< fvScalarFieldSource > clone(const DimensionedField< scalar, volMesh > &iF) const
Construct and return a clone setting internal field reference.
TypeName("distributionSizeGroup")
Runtime type information.
virtual tmp< DimensionedField< scalar, volMesh > > sourceValue(const fvSource &model, const DimensionedField< scalar, volMesh > &source) const
Return the source value.
distributionSizeGroupFvScalarFieldSource(const DimensionedField< scalar, volMesh > &, const dictionary &dict)
Construct from internal field and dictionary.
virtual tmp< DimensionedField< scalar, volMesh > > internalCoeff(const fvSource &model, const DimensionedField< scalar, volMesh > &source) const
Return the internal coefficient.
Base class for finite volume sources.
Definition: fvSource.H:52
A class for managing temporary objects.
Definition: tmp.H:55
const cellShapeList & cells
Namespace for OpenFOAM.
dictionary dict