interfacialGrowthGroupSurfaceAreaVolumeRatioFvScalarFieldSource.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::interfacialGrowthGroupSurfaceAreaVolumeRatioFvScalarFieldSource
26 
27 Description
28  This source condition creates an interfacial growth transfer source term in
29  the group surface-area-to-volume-ratio (kappa) equations of the fractal
30  shape model of a population balance model, consistent with interfacial mass
31  transfer of phase change or similar.
32 
33 Usage
34  Example of the source condition specification:
35  \verbatim
36  <sourceName>
37  {
38  type interfacialGrowthGroupSurfaceAreaVolumeRatio;
39  libs ("libmultiphaseEulerFvModels.so");
40  }
41  \endverbatim
42 
43 SourceFiles
44  interfacialGrowthGroupSurfaceAreaVolumeRatioFvScalarFieldSource.C
45 
46 \*---------------------------------------------------------------------------*/
47 
48 #ifndef interfacialGrowthGroupSurfaceAreaVolumeRatioFvScalarFieldSource_H
49 #define interfacialGrowthGroupSurfaceAreaVolumeRatioFvScalarFieldSource_H
50 
52 
53 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
54 
55 namespace Foam
56 {
57 
58 /*---------------------------------------------------------------------------*\
59 Class interfacialGrowthGroupSurfaceAreaVolumeRatioFvScalarFieldS... Declaration
60 \*---------------------------------------------------------------------------*/
61 
63 :
65 {
66 public:
67 
68  //- Runtime type information
69  TypeName("interfacialGrowthGroupSurfaceAreaVolumeRatio");
70 
71 
72  // Constructors
73 
74  //- Inherit constructors
75  using
78 
79  //- Construct and return a clone setting internal field reference
81  (
83  ) const
84  {
86  (
87  new
89  (
90  *this,
91  iF
92  )
93  );
94  }
95 
96 
97  // Member Functions
98 
99  //- Return the value transported from an adjacent group
101  (
102  const label j,
103  const fvSource& model
104  ) const;
105 };
106 
107 
108 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
109 
110 } // End namespace Foam
111 
112 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
113 
114 #endif
115 
116 // ************************************************************************* //
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
Base class for finite volume sources.
Definition: fvSource.H:53
Base class for source conditions which create a growth source terms for secondary properties of the g...
growthSecondaryPropertyFvScalarFieldSource(const DimensionedField< scalar, fvMesh > &, const dictionary &dict)
Construct from internal field and dictionary.
This source condition creates an interfacial growth transfer source term in the group surface-area-to...
virtual autoPtr< fvScalarFieldSource > clone(const DimensionedField< scalar, fvMesh > &iF) const
Construct and return a clone setting internal field reference.
TypeName("interfacialGrowthGroupSurfaceAreaVolumeRatio")
Runtime type information.
virtual tmp< DimensionedField< scalar, fvMesh > > value(const label j, const fvSource &model) const
Return the value transported from an adjacent group.
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