singleGroupFractionFvScalarFieldSource.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-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::singleGroupFractionFvScalarFieldSource
26 
27 Description
28  Source condition for group fractions of a population balance model that
29  sets a value of one in a single group, identified by its index, and a value
30  of zero in all other groups
31 
32 Usage
33  Example of the source condition specification:
34  \verbatim
35  <sourceName>
36  {
37  type singleGroupFraction;
38  index 0;
39  }
40  \endverbatim
41 
42 SourceFiles
43  singleGroupFractionFvScalarFieldSource.C
44 
45 \*---------------------------------------------------------------------------*/
46 
47 #ifndef singleGroupFractionFvScalarFieldSource_H
48 #define singleGroupFractionFvScalarFieldSource_H
49 
50 #include "fvFieldSources.H"
52 
53 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
54 
55 namespace Foam
56 {
57 
58 /*---------------------------------------------------------------------------*\
59  Class singleGroupFractionFvScalarFieldSource Declaration
60 \*---------------------------------------------------------------------------*/
61 
63 :
64  public fvScalarFieldSource,
66 {
67 private:
68 
69  // Private Data
70 
71  //- Group index
72  const scalar index_;
73 
74 
75  // Private Member Functions
76 
77  //- Return the allocation coefficient value
78  scalar eta() const;
79 
80 
81 public:
82 
83  //- Runtime type information
84  TypeName("singleGroupFraction");
85 
86 
87  // Constructors
88 
89  //- Construct from internal field and dictionary
91  (
93  const dictionary& dict
94  );
95 
96  //- Copy constructor setting internal field reference
98  (
101  );
102 
103  //- Construct and return a clone setting internal field reference
105  (
107  ) const
108  {
110  (
112  (
113  *this,
114  iF
115  )
116  );
117  }
118 
119 
120  //- Destructor
122 
123 
124  // Member Functions
125 
126  //- Return the source value
128  (
129  const fvSource& model,
131  ) const;
132 
133  //- Return the source value
135  (
136  const fvSource& model,
137  const scalarField& source,
138  const labelUList& cells
139  ) const;
140 
141  //- Return the internal coefficient
143  (
144  const fvSource& model,
146  ) const;
147 
148  //- Return the internal coefficient
150  (
151  const fvSource& model,
152  const scalarField& source,
153  const labelUList& cells
154  ) const;
155 
156  //- Write
157  virtual void write(Ostream&) const;
158 };
159 
160 
161 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
162 
163 } // End namespace Foam
164 
165 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
166 
167 #endif
168 
169 // ************************************************************************* //
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
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.
Source condition for group fractions of a population balance model that sets a value of one in a sing...
virtual tmp< DimensionedField< scalar, fvMesh > > sourceValue(const fvSource &model, const DimensionedField< scalar, fvMesh > &source) const
Return the source value.
virtual autoPtr< fvScalarFieldSource > clone(const DimensionedField< scalar, fvMesh > &iF) const
Construct and return a clone setting internal field reference.
virtual tmp< DimensionedField< scalar, fvMesh > > internalCoeff(const fvSource &model, const DimensionedField< scalar, fvMesh > &source) const
Return the internal coefficient.
singleGroupFractionFvScalarFieldSource(const DimensionedField< scalar, fvMesh > &, const dictionary &dict)
Construct from internal field and dictionary.
TypeName("singleGroupFraction")
Runtime type information.
A class for managing temporary objects.
Definition: tmp.H:55
const cellShapeList & cells
Namespace for OpenFOAM.
dictionary dict