nucleationSurfaceAreaVolumeRatioFvScalarFieldSource.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::nucleationSurfaceAreaVolumeRatioFvScalarFieldSource
26 
27 Description
28  This source condition creates a nucleation source term in the
29  surface-area-to-volume-ratio (kappa) equations of the fractal shape model
30  of population balance. The fvSource it relates to should be a nucleation
31  model.
32 
33 Usage
34  Example of the source condition specification:
35  \verbatim
36  <sourceName>
37  {
38  type nucleationSurfaceAreaVolumeRatio;
39  libs ("libmultiphaseEulerFvModels.so");
40  }
41  \endverbatim
42 
43 SourceFiles
44  nucleationSurfaceAreaVolumeRatioFvScalarFieldSource.C
45 
46 \*---------------------------------------------------------------------------*/
47 
48 #ifndef nucleationSurfaceAreaVolumeRatioFvScalarFieldSource_H
49 #define nucleationSurfaceAreaVolumeRatioFvScalarFieldSource_H
50 
51 #include "fvFieldSources.H"
53 
54 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
55 
56 namespace Foam
57 {
58 
59 /*---------------------------------------------------------------------------*\
60  Class nucleationSurfaceAreaVolumeRatioFvScalarFieldSource Declaration
61 \*---------------------------------------------------------------------------*/
62 
64 :
65  public fvScalarFieldSource,
67 {
68 public:
69 
70  //- Runtime type information
71  TypeName("nucleationSurfaceAreaVolumeRatio");
72 
73 
74  // Constructors
75 
76  //- Construct from internal field and dictionary
78  (
80  const dictionary& dict
81  );
82 
83  //- Copy constructor setting internal field reference
85  (
88  );
89 
90  //- Construct and return a clone setting internal field reference
92  (
94  ) const
95  {
97  (
99  (
100  *this,
101  iF
102  )
103  );
104  }
105 
106 
107  //- Destructor
109 
110 
111  // Member Functions
112 
113  //- Return the source value
115  (
116  const fvSource& model,
118  ) const;
119 
120  //- Return the internal coefficient
122  (
123  const fvSource& model,
125  ) const;
126 };
127 
128 
129 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
130 
131 } // End namespace Foam
132 
133 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
134 
135 #endif
136 
137 // ************************************************************************* //
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
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:52
This source condition creates a nucleation source term in the surface-area-to-volume-ratio (kappa) eq...
TypeName("nucleationSurfaceAreaVolumeRatio")
Runtime type information.
virtual autoPtr< fvScalarFieldSource > clone(const DimensionedField< scalar, volMesh > &iF) const
Construct and return a clone setting internal field reference.
nucleationSurfaceAreaVolumeRatioFvScalarFieldSource(const DimensionedField< scalar, volMesh > &, const dictionary &dict)
Construct from internal field and dictionary.
virtual tmp< DimensionedField< scalar, volMesh > > sourceValue(const fvSource &model, const DimensionedField< scalar, volMesh > &source) const
Return the source value.
virtual tmp< DimensionedField< scalar, volMesh > > internalCoeff(const fvSource &model, const DimensionedField< scalar, volMesh > &source) const
Return the internal coefficient.
Base class for source conditions of secondary properties of the size-groups of a population balance m...
const ModelType & model(const label deltai=0) const
Return a secondary property model.
A class for managing temporary objects.
Definition: tmp.H:55
Namespace for OpenFOAM.
dictionary dict