BrownianMotionForce.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2011-2024 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::BrownianMotionForce
26 
27 Description
28  Calculates particle Brownian motion force.
29 
30  Reference:
31  \verbatim
32  Li, A., & Ahmadi, G. (1992).
33  Dispersion and deposition of spherical particles from point sources
34  in a turbulent channel flow.
35  Aerosol science and technology,
36  16(4), 209-226.
37  \endverbatim
38 
39 SourceFiles
40  BrownianMotionForceI.H
41  BrownianMotionForce.C
42 
43 \*---------------------------------------------------------------------------*/
44 
45 #ifndef BrownianMotionForce_H
46 #define BrownianMotionForce_H
47 
48 #include "ParticleForce.H"
49 #include "randomGenerator.H"
50 
51 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
52 
53 namespace Foam
54 {
55 
56 /*---------------------------------------------------------------------------*\
57  Class BrownianMotionForce Declaration
58 \*---------------------------------------------------------------------------*/
59 
60 template<class CloudType>
62 :
63  public ParticleForce<CloudType>
64 {
65  // Private Data
66 
67  //- Molecular free path length [m]
68  const scalar lambda_;
69 
70  //- Turbulence flag
71  bool turbulence_;
72 
73  //- Pointer to the turbulence kinetic energy field
74  const volScalarField* kPtr_;
75 
76  //- Flag that indicates ownership of turbulence k field
77  bool ownK_;
78 
79 
80  // Private Member Functions
81 
82  //- Return the k field from the turbulence model
83  tmp<volScalarField> kModel() const;
84 
85 
86 public:
87 
88  //- Runtime type information
89  TypeName("BrownianMotion");
90 
91 
92  // Constructors
93 
94  //- Construct from mesh
96  (
98  const fvMesh& mesh,
99  const dictionary& dict
100  );
101 
102  //- Construct copy
104 
105  //- Construct and return a clone
106  virtual autoPtr<ParticleForce<CloudType>> clone() const
107  {
109  (
111  );
112  }
113 
114 
115  //- Destructor
116  virtual ~BrownianMotionForce();
117 
118 
119  // Member Functions
120 
121  // Access
122 
123  //- Return const access to the molecular free path length [m]
124  inline scalar lambda() const;
125 
126  //- Return const access to the turbulence flag
127  inline bool turbulence() const;
128 
129 
130  // Evaluation
131 
132  //- Cache fields
133  virtual void cacheFields(const bool store);
134 
135  //- Calculate the coupled force
136  virtual forceSuSp calcCoupled
137  (
138  const typename CloudType::parcelType& p,
139  const typename CloudType::parcelType::trackingData& td,
140  const scalar dt,
141  const scalar mass,
142  const scalar Re,
143  const scalar muc
144  ) const;
145 };
146 
147 
148 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
149 
150 } // End namespace Foam
151 
152 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
153 
154 #include "BrownianMotionForceI.H"
155 
156 #ifdef NoRepository
157  #include "BrownianMotionForce.C"
158 #endif
159 
160 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
161 
162 #endif
163 
164 // ************************************************************************* //
Calculates particle Brownian motion force.
TypeName("BrownianMotion")
Runtime type information.
BrownianMotionForce(CloudType &owner, const fvMesh &mesh, const dictionary &dict)
Construct from mesh.
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 autoPtr< ParticleForce< CloudType > > clone() const
Construct and return a clone.
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:80
ParcelType parcelType
Type of parcel the cloud was instantiated for.
Definition: DSMCCloud.H:225
Generic GeometricField class.
Abstract base class for particle forces.
Definition: ParticleForce.H:54
const CloudType & owner() const
Return const access to the cloud owner.
const fvMesh & mesh() const
Return the mesh database.
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: autoPtr.H:51
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:162
Helper container for force Su and Sp terms.
Definition: forceSuSp.H:64
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:99
A class for managing temporary objects.
Definition: tmp.H:55
Namespace for OpenFOAM.
scalarField Re(const UList< complex > &cf)
Definition: complexFields.C:97
dictionary dict
volScalarField & p