Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / lagrangian / intermediate / submodels / Kinematic / DispersionModel / GradientDispersionRAS / GradientDispersionRAS.H
blobe2cfcda7db5b325dc9e71837a4712c18140a998c
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2008-2011 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
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.
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.
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/>.
24 Class
25     Foam::GradientDispersionRAS
27 Description
28     The velocity is perturbed in the direction of -grad(k), with a
29     Gaussian random number distribution with variance sigma.
30     where sigma is defined below
32 \*---------------------------------------------------------------------------*/
34 #ifndef GradientDispersionRAS_H
35 #define GradientDispersionRAS_H
37 #include "DispersionRASModel.H"
39 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 namespace Foam
44 /*---------------------------------------------------------------------------*\
45                     Class GradientDispersionRAS Declaration
46 \*---------------------------------------------------------------------------*/
48 template<class CloudType>
49 class GradientDispersionRAS
51     public DispersionRASModel<CloudType>
53 protected:
55     // Protected data
57         // Locally cached turbulence fields
59             //- Gradient of k
60             const volVectorField* gradkPtr_;
62             //- Take ownership of the grad(k)
63             bool ownGradK_;
66 public:
68     //- Runtime type information
69     TypeName("gradientDispersionRAS");
72     // Constructors
74         //- Construct from components
75         GradientDispersionRAS(const dictionary& dict, CloudType& owner);
77         //- Construct copy
78         GradientDispersionRAS(GradientDispersionRAS<CloudType>& dm);
80         //- Construct and return a clone
81         virtual autoPtr<DispersionModel<CloudType> > clone()
82         {
83             return autoPtr<DispersionModel<CloudType> >
84             (
85                 new GradientDispersionRAS<CloudType>(*this)
86             );
87         }
90     //- Destructor
91     virtual ~GradientDispersionRAS();
94     // Member Functions
96         //- Cache carrier fields
97         virtual void cacheFields(const bool store);
99         //- Update (disperse particles)
100         virtual vector update
101         (
102             const scalar dt,
103             const label cellI,
104             const vector& U,
105             const vector& Uc,
106             vector& UTurb,
107             scalar& tTurb
108         );
112 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
114 } // End namespace Foam
116 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
118 #ifdef NoRepository
119 #   include "GradientDispersionRAS.C"
120 #endif
122 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
124 #endif
126 // ************************************************************************* //