Green.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::Green
26 
27 Description
28  Green packing dispersion model for industrial separations
29 
30  Reference:
31  \verbatim
32  Green, M. D., Eberl, M., & Landman, K. A. (1996).
33  Compressive yield stress of flocculated suspensions:
34  determination via experiment.
35  AIChE journal, 42(8), 2308-2318.
36  \endverbatim
37 
38 Usage
39  Example usage:
40  \verbatim
41  packingDispersionModel Green;
42 
43  GreenCoeffs
44  {
45  sigma0 2.11e-3;
46  n 9;
47  alphaGel 0.1;
48  }
49  \endverbatim
50 
51 SourceFiles
52  Green.C
53 
54 \*---------------------------------------------------------------------------*/
55 
56 #ifndef Green_H
57 #define Green_H
58 
59 #include "packingDispersionModel.H"
60 
61 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
62 
63 namespace Foam
64 {
65 namespace packingDispersionModels
66 {
67 
68 /*---------------------------------------------------------------------------*\
69  Class Green Declaration
70 \*---------------------------------------------------------------------------*/
71 
72 class Green
73 :
75 {
76  // Private Data
77 
78  dimensionedScalar sigma0_;
80  dimensionedScalar alphaGel_;
81 
82 
83 public:
84 
85  //- Runtime type information
86  TypeName("Green");
87 
88 
89  // Constructors
90 
91  //- Construct from components
92  Green
93  (
94  const dictionary& dict,
95  const relativeVelocityModel& relativeVelocity
96  );
97 
98 
99  //- Destructor
100  ~Green();
101 
102 
103  // Member Functions
104 
105  //- Return the derivative of the packing stress w.r.t. phase-fraction
106  virtual tmp<volScalarField> sigmaPrime() const;
107 };
108 
109 
110 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
111 
112 } // End namespace packingDispersionModels
113 } // End namespace Foam
114 
115 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
116 
117 #endif
118 
119 // ************************************************************************* //
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.
Green packing dispersion model for industrial separations.
Definition: Green.H:74
TypeName("Green")
Runtime type information.
virtual tmp< volScalarField > sigmaPrime() const
Return the derivative of the packing stress w.r.t. phase-fraction.
Definition: Green.C:70
Green(const dictionary &dict, const relativeVelocityModel &relativeVelocity)
Construct from components.
Definition: Green.C:49
A class for managing temporary objects.
Definition: tmp.H:55
Namespace for OpenFOAM.
dictionary dict