uniformFixedValueGroupSurfaceAreaVolumeRatioFvScalarFieldSource.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::uniformFixedValueGroupSurfaceAreaVolumeRatioFvScalarFieldSource
26 
27 Description
28  This source condition creates a uniform fixed value source term in the
29  group surface-area-volume-ratio (kappa) equations of the fractal shape
30  model of a population balance model.
31 
32 Usage
33  Example of the source condition specification:
34  \verbatim
35  <sourceName>
36  {
37  type uniformFixedValueGroupSurfaceAreaVolumeRatio;
38  libs ("libmultiphaseEulerFvModels.so");
39  uniformValue 1.5e10;
40  }
41  \endverbatim
42 
43 SourceFiles
44  uniformFixedValueGroupSurfaceAreaVolumeRatioFvScalarFieldSource.C
45 
46 \*---------------------------------------------------------------------------*/
47 
48 #ifndef uniformFixedValueGroupSurfaceAreaVolumeRatioFvScalarFieldSource_H
49 #define uniformFixedValueGroupSurfaceAreaVolumeRatioFvScalarFieldSource_H
50 
51 #include "fvFieldSources.H"
53 #include "Function1.H"
54 
55 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
56 
57 namespace Foam
58 {
59 
60 /*---------------------------------------------------------------------------*\
61 Class uniformFixedValueGroupSurfaceAreaVolumeRatioFvScalarFieldS... Declaration
62 \*---------------------------------------------------------------------------*/
63 
65 :
66  public fvScalarFieldSource,
68 {
69 private:
70 
71  // Private Data
72 
73  //- Uniform value
74  autoPtr<Function1<scalar>> uniformValue_;
75 
76 
77 public:
78 
79  //- Runtime type information
80  TypeName("uniformFixedValueGroupSurfaceAreaVolumeRatio");
81 
82 
83  // Constructors
84 
85  //- Construct from internal field and dictionary
87  (
89  const dictionary& dict
90  );
91 
92  //- Copy constructor setting internal field reference
94  (
95  const
98  );
99 
100  //- Construct and return a clone setting internal field reference
102  (
104  ) const
105  {
107  (
108  new
110  (
111  *this,
112  iF
113  )
114  );
115  }
116 
117 
118  //- Destructor
120 
121 
122  // Member Functions
123 
124  //- Return the source value
126  (
127  const fvSource& model,
129  ) const;
130 
131  //- Return the source value
133  (
134  const fvSource& model,
135  const scalarField& source,
136  const labelUList& cells
137  ) const;
138 
139  //- Return the internal coefficient
141  (
142  const fvSource& model,
144  ) const;
145 
146  //- Return the internal coefficient
148  (
149  const fvSource& model,
150  const scalarField& source,
151  const labelUList& cells
152  ) const;
153 
154  //- Write
155  virtual void write(Ostream&) const;
156 };
157 
158 
159 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
160 
161 } // End namespace Foam
162 
163 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
164 
165 #endif
166 
167 // ************************************************************************* //
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.
A class for managing temporary objects.
Definition: tmp.H:55
This source condition creates a uniform fixed value source term in the group surface-area-volume-rati...
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.
uniformFixedValueGroupSurfaceAreaVolumeRatioFvScalarFieldSource(const DimensionedField< scalar, fvMesh > &, const dictionary &dict)
Construct from internal field and dictionary.
TypeName("uniformFixedValueGroupSurfaceAreaVolumeRatio")
Runtime type information.
const cellShapeList & cells
Namespace for OpenFOAM.
dictionary dict