ParkRogakSurfaceAreaVolumeRatioFvScalarFieldSource.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::ParkRogakSurfaceAreaVolumeRatioFvScalarFieldSource
26 
27 Description
28  This source condition creates an interfacial mass transfer source term in
29  the surface-area-to-volume-ratio (kappa) equations of the fractal shape
30  model of population balance, according to the model of Park and Rogak.
31 
32  Reference:
33  \verbatim
34  Park, S. H., & Rogak, S. N. (2004).
35  A novel fixed-sectional model for the formation and growth of aerosol
36  agglomerates.
37  Journal of Aerosol Science, 35(11), 1385-1404.
38  \endbverbatim
39 
40 Usage
41  Example of the source condition specification:
42  \verbatim
43  <sourceName>
44  {
45  type ParkRogakSurfaceAreaVolumeRatio;
46  libs ("libmultiphaseEulerFvModels.so");
47  }
48  \endverbatim
49 
50 SourceFiles
51  ParkRogakSurfaceAreaVolumeRatioFvScalarFieldSource.C
52 
53 \*---------------------------------------------------------------------------*/
54 
55 #ifndef ParkRogakSurfaceAreaVolumeRatioFvScalarFieldSource_H
56 #define ParkRogakSurfaceAreaVolumeRatioFvScalarFieldSource_H
57 
59 
60 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
61 
62 namespace Foam
63 {
64 
65 /*---------------------------------------------------------------------------*\
66  Class ParkRogakSurfaceAreaVolumeRatioFvScalarFieldSource Declaration
67 \*---------------------------------------------------------------------------*/
68 
70 :
72 {
73 public:
74 
75  //- Runtime type information
76  TypeName("ParkRogakSurfaceAreaVolumeRatio");
77 
78 
79  // Constructors
80 
81  //- Inherit constructors
82  using
85 
86  //- Construct and return a clone setting internal field reference
88  (
90  ) const
91  {
93  (
95  (
96  *this,
97  iF
98  )
99  );
100  }
101 
102 
103  // Member Functions
104 
105  //- Return the value transported from the adjacent group
107  (
108  const label i,
109  const fvSource& model
110  ) const;
111 };
112 
113 
114 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
115 
116 } // End namespace Foam
117 
118 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
119 
120 #endif
121 
122 // ************************************************************************* //
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
This source condition creates an interfacial mass transfer source term in the surface-area-to-volume-...
virtual autoPtr< fvScalarFieldSource > clone(const DimensionedField< scalar, volMesh > &iF) const
Construct and return a clone setting internal field reference.
virtual tmp< DimensionedField< scalar, volMesh > > value(const label i, const fvSource &model) const
Return the value transported from the adjacent group.
TypeName("ParkRogakSurfaceAreaVolumeRatio")
Runtime type information.
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:52
Base class for source conditions which create a growth source terms for secondary properties of the s...
growthSecondaryPropertyFvScalarFieldSource(const DimensionedField< scalar, volMesh > &, const dictionary &dict)
Construct from internal field and dictionary.
label i() const
Return the index of this group.
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.
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