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 -------------------------------------------------------------------------------
11 License
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 
27 Class
28  Foam::BrownianMotionForce
29 
30 Description
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 
42 SourceFiles
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 
56 namespace Foam
57 {
58 
59 /*---------------------------------------------------------------------------*\
60  Class BrownianMotionForce Declaration
61 \*---------------------------------------------------------------------------*/
62 
63 template<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 
92 public:
93 
94  //- Runtime type information
95  TypeName("BrownianMotion");
96 
97 
98  // Constructors
99 
100  //- Construct from mesh
102  (
103  CloudType& owner,
104  const fvMesh& mesh,
105  const dictionary& dict
106  );
107 
108  //- Construct copy
110 
111  //- Construct and return a clone
112  virtual autoPtr<ParticleForce<CloudType>> clone() const
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 // ************************************************************************* //
Foam::Random
Random number generator.
Definition: Random.H:59
p
volScalarField & p
Definition: createFieldRefs.H:8
Foam::ParticleForce::owner
const CloudType & owner() const
Return const access to the cloud owner.
Definition: ParticleForceI.H:31
Foam::BrownianMotionForce::BrownianMotionForce
BrownianMotionForce(CloudType &owner, const fvMesh &mesh, const dictionary &dict)
Construct from mesh.
Definition: BrownianMotionForce.C:71
Foam::tmp
A class for managing temporary objects.
Definition: PtrList.H:61
Foam::BrownianMotionForce::calcCoupled
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.
Definition: BrownianMotionForce.C:143
Foam::BrownianMotionForce::~BrownianMotionForce
virtual ~BrownianMotionForce()
Destructor.
Definition: BrownianMotionForce.C:104
BrownianMotionForceI.H
Foam::BrownianMotionForce::cacheFields
virtual void cacheFields(const bool store)
Cache fields.
Definition: BrownianMotionForce.C:111
Foam::BrownianMotionForce::TypeName
TypeName("BrownianMotion")
Runtime type information.
Foam::BrownianMotionForce::turbulence
bool turbulence() const
Return const access to the turbulence flag.
Definition: BrownianMotionForceI.H:38
Foam::BrownianMotionForce::lambda
scalar lambda() const
Return const access to the molecular free path length [m].
Definition: BrownianMotionForceI.H:31
BrownianMotionForce.C
Foam::forceSuSp
Helper container for force Su and Sp terms.
Definition: forceSuSp.H:64
Foam::ParticleForce
Abstract base class for particle forces.
Definition: ParticleForce.H:59
ParticleForce.H
Foam::DSMCCloud
Templated base class for dsmc cloud.
Definition: DSMCCloud.H:71
Foam::BrownianMotionForce::clone
virtual autoPtr< ParticleForce< CloudType > > clone() const
Construct and return a clone.
Definition: BrownianMotionForce.H:111
dict
dictionary dict
Definition: searchingEngine.H:14
Foam::dictionary
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition: dictionary.H:123
Foam::fvMesh
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:85
Foam
Namespace for OpenFOAM.
Definition: atmBoundaryLayer.C:33
Foam::BrownianMotionForce
Calculates particle Brownian motion force.
Definition: BrownianMotionForce.H:63
Random.H
Foam::autoPtr
Pointer management similar to std::unique_ptr, with some additional methods and type checking.
Definition: HashPtrTable.H:53
Foam::Re
scalarField Re(const UList< complex > &cf)
Extract real component.
Definition: complexField.C:159
Foam::DSMCCloud::parcelType
ParcelType parcelType
Type of parcel the cloud was instantiated for.
Definition: DSMCCloud.H:220
Foam::ParticleForce::mesh
const fvMesh & mesh() const
Return the mesh database.
Definition: ParticleForceI.H:45
Foam::GeometricField< scalar, fvPatchField, volMesh >