Tenneti.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2016-2017 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::dragModels::Tenneti
26 
27 Description
28  Drag model of Tenneti et al. for monodisperse gas-particle flows obtained
29  with particle-resolved direct numerical simulations and accounting for the
30  effect of particle ensembles.
31 
32  Reference:
33  \verbatim
34  Tenneti, S., Garg, R., & Subramaniam, S. (2011).
35  Drag law for monodisperse gas–solid systems using particle-resolved
36  direct numerical simulation of flow past fixed assemblies of spheres.
37  International Journal of Multiphase Flow, 37(9), 1072–1092.
38  \verbatim
39 
40 SourceFiles
41  Tenneti.C
42 
43 \*---------------------------------------------------------------------------*/
44 
45 #ifndef Tenneti_H
46 #define Tenneti_H
47 
48 #include "dragModel.H"
49 
50 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
51 
52 namespace Foam
53 {
54 
55 class phasePair;
56 
57 namespace dragModels
58 {
59 
60 class SchillerNaumann;
61 
62 /*---------------------------------------------------------------------------*\
63  Class Tenneti Declaration
64 \*---------------------------------------------------------------------------*/
65 
66 class Tenneti
67 :
68  public dragModel
69 {
70  // Private data
71 
72  //- Residual Reynolds Number
73  const dimensionedScalar residualRe_;
74 
75 
76 public:
77 
78  //- Runtime type information
79  TypeName("Tenneti");
80 
81 
82  // Constructors
83 
84  //- Construct from a dictionary and a phase pair
85  Tenneti
86  (
87  const dictionary& dict,
88  const phasePair& pair,
89  const bool registerObject
90  );
91 
92 
93  //- Destructor
94  virtual ~Tenneti();
95 
96 
97  // Member Functions
98 
99  //- Drag coefficient
100  virtual tmp<volScalarField> CdRe() const;
101 };
102 
103 
104 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
105 
106 } // End namespace dragModels
107 } // End namespace Foam
108 
109 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
110 
111 #endif
112 
113 // ************************************************************************* //
dictionary dict
#define TypeName(TypeNameString)
Declare a ClassName() with extra virtual type info.
Definition: typeInfo.H:70
dimensioned< scalar > dimensionedScalar
Dimensioned scalar obtained from generic dimensioned type.
Namespace for OpenFOAM.