BrownianMotionForce.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 | www.openfoam.com
6 \\/ M anipulation |
7-------------------------------------------------------------------------------
8 Copyright (C) 2011-2017 OpenFOAM Foundation
9 Copyright (C) 2021 OpenCFD Ltd.
10-------------------------------------------------------------------------------
11License
12 This file is part of OpenFOAM.
13
14 OpenFOAM is free software: you can redistribute it and/or modify it
15 under the terms of the GNU General Public License as published by
16 the Free Software Foundation, either version 3 of the License, or
17 (at your option) any later version.
18
19 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
20 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
26
27Class
28 Foam::BrownianMotionForce
29
30Description
31 Calculates particle Brownian motion force.
32
33 Reference:
34 \verbatim
35 Li, A., & Ahmadi, G. (1992).
36 Dispersion and deposition of spherical particles from point sources
37 in a turbulent channel flow.
38 Aerosol science and technology,
39 16(4), 209-226.
40 \endverbatim
41
42SourceFiles
43 BrownianMotionForceI.H
44 BrownianMotionForce.C
45
46\*---------------------------------------------------------------------------*/
47
48#ifndef BrownianMotionForce_H
49#define BrownianMotionForce_H
50
51#include "ParticleForce.H"
52#include "Random.H"
53
54// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
55
56namespace Foam
57{
58
59/*---------------------------------------------------------------------------*\
60 Class BrownianMotionForce Declaration
61\*---------------------------------------------------------------------------*/
62
63template<class CloudType>
65:
66 public ParticleForce<CloudType>
67{
68 // Private data
69
70 //- Reference to the cloud random number generator
71 Random& rndGen_;
72
73 //- Molecular free path length [m]
74 const scalar lambda_;
75
76 //- Turbulence flag
77 bool turbulence_;
78
79 //- Pointer to the turbulence kinetic energy field
80 const volScalarField* kPtr_;
81
82 //- Flag that indicates ownership of turbulence k field
83 bool ownK_;
84
85
86 // Private Member Functions
87
88 //- Return the k field from the turbulence model
89 tmp<volScalarField> kModel() const;
90
91
92public:
93
94 //- Runtime type information
95 TypeName("BrownianMotion");
96
97
98 // Constructors
99
100 //- Construct from mesh
102 (
104 const fvMesh& mesh,
105 const dictionary& dict
106 );
107
108 //- Construct copy
110
111 //- Construct and return a clone
113 {
115 (
117 );
118 }
119
120
121 //- Destructor
122 virtual ~BrownianMotionForce();
123
124
125 // Member Functions
126
127 // Access
128
129 //- Return const access to the molecular free path length [m]
130 inline scalar lambda() const;
131
132 //- Return const access to the turbulence flag
133 inline bool turbulence() const;
134
135
136 // Evaluation
137
138 //- Cache fields
139 virtual void cacheFields(const bool store);
140
141 //- Calculate the coupled force
142 virtual forceSuSp calcCoupled
143 (
144 const typename CloudType::parcelType& p,
145 const typename CloudType::parcelType::trackingData& td,
146 const scalar dt,
147 const scalar mass,
148 const scalar Re,
149 const scalar muc
150 ) const;
151};
152
153
154// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
155
156} // End namespace Foam
157
158// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
159
160#include "BrownianMotionForceI.H"
161
162#ifdef NoRepository
163 #include "BrownianMotionForce.C"
164#endif
165
166// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
167
168#endif
169
170// ************************************************************************* //
Calculates particle Brownian motion force.
TypeName("BrownianMotion")
Runtime type information.
virtual autoPtr< ParticleForce< CloudType > > clone() const
Construct and return a clone.
bool turbulence() const
Return const access to the turbulence flag.
scalar lambda() const
Return const access to the molecular free path length [m].
virtual void cacheFields(const bool store)
Cache fields.
virtual ~BrownianMotionForce()
Destructor.
virtual forceSuSp calcCoupled(const typename CloudType::parcelType &p, const typename CloudType::parcelType::trackingData &td, const scalar dt, const scalar mass, const scalar Re, const scalar muc) const
Calculate the coupled force.
Templated base class for dsmc cloud.
Definition: DSMCCloud.H:75
ParcelType parcelType
Type of parcel the cloud was instantiated for.
Definition: DSMCCloud.H:220
Abstract base class for particle forces.
Definition: ParticleForce.H:60
const CloudType & owner() const
Return const access to the cloud owner.
const fvMesh & mesh() const
Return the mesh database.
Random number generator.
Definition: Random.H:60
Pointer management similar to std::unique_ptr, with some additional methods and type checking.
Definition: autoPtr.H:66
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition: dictionary.H:126
Class used to pass data into container.
Helper container for force Su and Sp terms.
Definition: forceSuSp.H:67
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:91
A class for managing temporary objects.
Definition: tmp.H:65
volScalarField & p
Namespace for OpenFOAM.
scalarField Re(const UList< complex > &cf)
Extract real component.
Definition: complexField.C:159
dictionary dict
#define TypeName(TypeNameString)
Declare a ClassName() with extra virtual type info.
Definition: typeInfo.H:73