growthFvScalarFieldSource.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) 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::growthFvScalarFieldSource
26 
27 Description
28  Base class for source conditions which create a growth source terms in the
29  size group equations or related secondary property equations of a
30  population balance.
31 
32 SourceFiles
33  growthFvScalarFieldSource.C
34 
35 \*---------------------------------------------------------------------------*/
36 
37 #ifndef growthFvScalarFieldSource_H
38 #define growthFvScalarFieldSource_H
39 
40 #include "fvFieldSources.H"
41 
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 
44 namespace Foam
45 {
46 
47 /*---------------------------------------------------------------------------*\
48  Class growthFvScalarFieldSource Declaration
49 \*---------------------------------------------------------------------------*/
50 
52 :
53  public fvScalarFieldSource
54 {
55 public:
56 
57  // Constructors
58 
59  //- Inherit constructors
60  using fvScalarFieldSource::fvScalarFieldSource;
61 
62 
63  // Member Functions
64 
65  //- Return the source value. Not Implemented.
67  (
68  const fvSource& model,
70  ) const;
71 
72  //- Return the source coefficients for exchange with the groups below
73  // and above this group
75  (
76  const fvSource& model
77  ) const = 0;
78 };
79 
80 
81 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
82 
83 } // End namespace Foam
84 
85 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
86 
87 #endif
88 
89 // ************************************************************************* //
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
An ordered pair of two objects of type <Type> with first() and second() elements.
Definition: Pair.H:66
Base class for finite volume sources.
Definition: fvSource.H:52
Base class for source conditions which create a growth source terms in the size group equations or re...
virtual tmp< DimensionedField< scalar, volMesh > > sourceValue(const fvSource &model, const DimensionedField< scalar, volMesh > &source) const
Return the source value. Not Implemented.
virtual Pair< tmp< DimensionedField< scalar, volMesh > > > sourceCoeffs(const fvSource &model) const =0
Return the source coefficients for exchange with the groups below.
A class for managing temporary objects.
Definition: tmp.H:55
Namespace for OpenFOAM.