WenYuDragForce.C
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) 2013-2018 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 \*---------------------------------------------------------------------------*/
25 
26 #include "WenYuDragForce.H"
27 #include "volFields.H"
28 
29 // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
30 
31 template<class CloudType>
32 Foam::scalar Foam::WenYuDragForce<CloudType>::CdRe(const scalar Re) const
33 {
34  if (Re > 1000.0)
35  {
36  return 0.44*Re;
37  }
38  else
39  {
40  return 24.0*(1.0 + 0.15*pow(Re, 0.687));
41  }
42 }
43 
44 
45 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
46 
47 template<class CloudType>
49 (
50  CloudType& owner,
51  const fvMesh& mesh,
52  const dictionary& dict
53 )
54 :
55  ParticleForce<CloudType>(owner, mesh, dict, typeName, true),
56  alphac_
57  (
58  this->mesh().template lookupObject<volScalarField>
59  (
60  this->coeffs().lookup("alphac")
61  )
62  )
63 {}
64 
65 
66 template<class CloudType>
68 (
70 )
71 :
73  alphac_
74  (
75  this->mesh().template lookupObject<volScalarField>
76  (
77  this->coeffs().lookup("alphac")
78  )
79  )
80 {}
81 
82 
83 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
84 
85 template<class CloudType>
87 {}
88 
89 
90 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
91 
92 template<class CloudType>
94 (
95  const typename CloudType::parcelType& p,
96  const typename CloudType::parcelType::trackingData& td,
97  const scalar dt,
98  const scalar mass,
99  const scalar Re,
100  const scalar muc
101 ) const
102 {
103  scalar alphac(alphac_[p.cell()]);
104 
105  return forceSuSp
106  (
107  Zero,
108  (mass/p.rho())
109  *0.75*CdRe(alphac*Re)*muc*pow(alphac, -2.65)/(alphac*sqr(p.d()))
110  );
111 }
112 
113 
114 // ************************************************************************* //
dictionary dict
WenYuDragForce(CloudType &owner, const fvMesh &mesh, const dictionary &dict)
Construct from mesh.
Wen-Yu drag model for solid spheres.
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
dimensionedSymmTensor sqr(const dimensionedVector &dv)
Abstract base class for particle forces.
Definition: ParticleForce.H:53
Helper container for force Su and Sp terms.
Definition: forceSuSp.H:61
dynamicFvMesh & mesh
static const zero Zero
Definition: zero.H:97
virtual ~WenYuDragForce()
Destructor.
ParcelType parcelType
Type of parcel the cloud was instantiated for.
Definition: DSMCCloud.H:218
dimensionedScalar pow(const dimensionedScalar &ds, const dimensionedScalar &expt)
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:78
Templated base class for dsmc cloud.
Definition: DSMCCloud.H:69
scalarField Re(const UList< complex > &cf)
Definition: complexFields.C:97
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.