Stochastic.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::IsotropyModels::Stochastic
26 
27 Description
28  Stochastic return-to-isotropy model.
29 
30  Particle velocities are modified by sampling a gaussian-plus-delta
31  distribution, which depends on a time-scale. This randomises some particle
32  velocities whilst leaving others unchanged. The lower the value of the
33  time-scale, the greater the proportion of particle velocities affected.
34 
35  A correction step is performed at the end to ensure that the model
36  conserves both momentum and granular temperature.
37 
38  Reference:
39  \verbatim
40  "Inclusion of collisional return-to-isotropy in the MP-PIC method"
41  P O'Rourke and D Snider
42  Chemical Engineering Science
43  Volume 80, Issue 0, Pages 39-54, December 2012
44  \endverbatim
45 
46 SourceFiles
47  Stochastic.C
48 
49 \*---------------------------------------------------------------------------*/
50 
51 #ifndef Stochastic_H
52 #define Stochastic_H
53 
54 #include "IsotropyModel.H"
55 
56 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
57 
58 namespace Foam
59 {
60 namespace IsotropyModels
61 {
62 
63 /*---------------------------------------------------------------------------*\
64  Class Stochastic Declaration
65 \*---------------------------------------------------------------------------*/
66 
67 template<class CloudType>
68 class Stochastic
69 :
70  public IsotropyModel<CloudType>
71 {
72 private:
73 
74  // Private Member Functions
75 
76  //- Sample a gaussian distribution using the Box-Muller method
77  scalar sampleGauss();
78 
79 
80 public:
81 
82  //- Runtime type information
83  TypeName("stochastic");
84 
85  // Constructors
86 
87  //- Construct from components
89 
90  //- Construct copy
92 
93  //- Construct and return a clone
95  {
97  (
98  new Stochastic<CloudType>(*this)
99  );
100  }
101 
102 
103  //- Destructor
104  virtual ~Stochastic();
105 
106 
107  //- Member Functions
108 
109  //- Calculate velocities
110  virtual void calculate();
111 };
112 
113 
114 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
115 
116 } // End namespace IsotropyModels
117 } // End namespace Foam
118 
119 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
120 
121 #ifdef NoRepository
122  #include "Stochastic.C"
123 #endif
124 
125 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
126 
127 #endif
128 
129 // ************************************************************************* //
const dictionary & dict() const
Return const access to the cloud dictionary.
Definition: subModelBase.C:110
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
Stochastic return-to-isotropy model.
Definition: Stochastic.H:67
Stochastic(const dictionary &dict, CloudType &owner)
Construct from components.
Definition: Stochastic.C:32
Base class for collisional return-to-isotropy models.
Definition: MPPICCloud.H:59
virtual ~Stochastic()
Destructor.
Definition: Stochastic.C:54
virtual void calculate()
Member Functions.
Definition: Stochastic.C:97
virtual autoPtr< IsotropyModel< CloudType > > clone() const
Construct and return a clone.
Definition: Stochastic.H:93
const CloudType & owner() const
Return const access to the owner cloud.
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:53
Templated base class for dsmc cloud.
Definition: DSMCCloud.H:68
TypeName("stochastic")
Runtime type information.
Namespace for OpenFOAM.