isotropic.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) 2013-2016 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::TimeScaleModels::isotropic
26 
27 Description
28  Model for the time scale over which the velocity field of a dispersed phase
29  tends towards an isotropic distribution.
30 
31  Reference:
32  \verbatim
33  "Inclusion of collisional return-to-isotropy in the MP-PIC method"
34  P O'Rourke and D Snider
35  Chemical Engineering Science
36  Volume 80, Issue 0, Pages 39-54, December 2012
37  \endverbatim
38 
39 SourceFiles
40  isotropic.C
41 
42 \*---------------------------------------------------------------------------*/
43 
44 #ifndef isotropic_H
45 #define isotropic_H
46 
47 #include "TimeScaleModel.H"
48 
49 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
50 
51 namespace Foam
52 {
53 namespace TimeScaleModels
54 {
55 
56 /*---------------------------------------------------------------------------*\
57  Class isotropic Declaration
58 \*---------------------------------------------------------------------------*/
59 
60 class isotropic
61 :
62  public TimeScaleModel
63 {
64 public:
65 
66  //- Runtime type information
67  TypeName("isotropic");
68 
69 
70  //- Constructors
71 
72  //- Construct from components
73  isotropic(const dictionary& dict);
74 
75  //- Construct a copy
76  isotropic(const isotropic& hc);
77 
78  //- Construct and return a clone
79  virtual autoPtr<TimeScaleModel> clone() const
80  {
82  (
83  new isotropic(*this)
84  );
85  }
86 
87 
88  //- Destructor
89  virtual ~isotropic();
90 
91 
92  //- Member Functions
93 
94  //- Time scale
96  (
98  const FieldField<Field, scalar>& r32,
99  const FieldField<Field, scalar>& uSqr,
101  ) const;
102 };
103 
104 
105 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
106 
107 } // End namespace TimeScaleModels
108 } // End namespace Foam
109 
110 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
111 
112 #endif
113 
114 // ************************************************************************* //
dictionary dict
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
tmp< FieldField< Field, scalar > > oneByTau(const FieldField< Field, scalar > &alpha, const FieldField< Field, scalar > &r32, const FieldField< Field, scalar > &uSqr, const FieldField< Field, scalar > &f) const
Member Functions.
Definition: isotropic.C:77
Generic field type.
Definition: FieldField.H:51
TypeName("isotropic")
Runtime type information.
virtual autoPtr< TimeScaleModel > clone() const
Construct and return a clone.
Definition: isotropic.H:78
labelList f(nPoints)
Base class for time scale models.
isotropic(const dictionary &dict)
Constructors.
Definition: isotropic.C:50
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:52
Model for the time scale over which the velocity field of a dispersed phase tends towards an isotropi...
Definition: isotropic.H:59
A class for managing temporary objects.
Definition: PtrList.H:53
const dimensionedScalar alpha
Fine-structure constant: default SI units: [].
Namespace for OpenFOAM.
virtual ~isotropic()
Destructor.
Definition: isotropic.C:69