none_packingDispersionModel.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 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::packingDispersionModels::none
26 
27 Description
28  Dummy packing dispersion model
29 
30 Usage
31  Example usage:
32  \verbatim
33  packingDispersionModel none;
34  \endverbatim
35 
36 SourceFiles
37  none.C
38 
39 \*---------------------------------------------------------------------------*/
40 
41 #ifndef none_packingDispersionModel_H
42 #define none_packingDispersionModel_H
43 
44 #include "packingDispersionModel.H"
45 
46 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
47 
48 namespace Foam
49 {
50 namespace packingDispersionModels
51 {
52 
53 /*---------------------------------------------------------------------------*\
54  Class none Declaration
55 \*---------------------------------------------------------------------------*/
56 
57 class none
58 :
60 {
61 
62 public:
63 
64  //- Runtime type information
65  TypeName("none");
66 
67 
68  // Constructors
69 
70  //- Construct from relativeVelocity
71  none
72  (
73  const relativeVelocityModel& relativeVelocity
74  );
75 
76  //- Construct from components
77  none
78  (
79  const dictionary& dict,
80  const relativeVelocityModel& relativeVelocity
81  );
82 
83 
84  //- Destructor
85  ~none();
86 
87 
88  // Member Functions
89 
90  //- Return the derivative of the packing stress w.r.t. phase-fraction
91  virtual tmp<volScalarField> sigmaPrime() const;
92 
93  //- Return the diffusion coefficient of the dispersed phase
94  virtual tmp<volScalarField> Dd() const;
95 };
96 
97 
98 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
99 
100 } // End namespace packingDispersionModels
101 } // End namespace Foam
102 
103 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
104 
105 #endif
106 
107 // ************************************************************************* //
A list of keywords followed by any number of values (e.g. words and numbers) or sub-dictionaries.
Definition: dictionary.H:162
Packing dispersion model.
virtual tmp< volScalarField > Dd() const
Return the diffusion coefficient of the dispersed phase.
TypeName("none")
Runtime type information.
virtual tmp< volScalarField > sigmaPrime() const
Return the derivative of the packing stress w.r.t. phase-fraction.
none(const relativeVelocityModel &relativeVelocity)
Construct from relativeVelocity.
A class for managing temporary objects.
Definition: tmp.H:55
Namespace for OpenFOAM.
dictionary dict