WenYuDragForce.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2013-2014 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 scalar dt,
97  const scalar mass,
98  const scalar Re,
99  const scalar muc
100 ) const
101 {
102  scalar alphac(alphac_[p.cell()]);
103 
104  return forceSuSp
105  (
106  vector::zero,
107  (mass/p.rho())
108  *0.75*CdRe(alphac*Re)*muc*pow(alphac, -2.65)/(alphac*sqr(p.d()))
109  );
110 }
111 
112 
113 // ************************************************************************* //
volFields.H
Foam::WenYuDragForce::~WenYuDragForce
virtual ~WenYuDragForce()
Destructor.
Definition: WenYuDragForce.C:86
p
p
Definition: pEqn.H:62
Foam::WenYuDragForce::calcCoupled
virtual forceSuSp calcCoupled(const typename CloudType::parcelType &p, const scalar dt, const scalar mass, const scalar Re, const scalar muc) const
Calculate the coupled force.
Definition: WenYuDragForce.C:94
Foam::WenYuDragForce
Wen-Yu drag model for solid spheres.
Definition: WenYuDragForce.H:47
Foam::Re
scalarField Re(const UList< complex > &cf)
Definition: complexFields.C:97
Foam::forceSuSp
Helper container for force Su and Sp terms.
Definition: forceSuSp.H:58
Foam::WenYuDragForce::CdRe
scalar CdRe(const scalar Re) const
Drag coefficient multiplied by Reynolds number.
Definition: WenYuDragForce.C:32
Foam::ParticleForce
Abstract base class for particle forces.
Definition: ParticleForce.H:53
Foam::WenYuDragForce::WenYuDragForce
WenYuDragForce(CloudType &owner, const fvMesh &mesh, const dictionary &dict)
Construct from mesh.
Definition: WenYuDragForce.C:49
Foam::pow
dimensionedScalar pow(const dimensionedScalar &ds, const dimensionedScalar &expt)
Definition: dimensionedScalar.C:73
Foam::DSMCCloud
Templated base class for dsmc cloud.
Definition: DSMCCloud.H:68
dict
dictionary dict
Definition: searchingEngine.H:14
Foam::dictionary
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:137
mesh
dynamicFvMesh & mesh
Definition: createDynamicFvMesh.H:18
Foam::fvMesh
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:78
Foam::sqr
dimensionedSymmTensor sqr(const dimensionedVector &dv)
Definition: dimensionedSymmTensor.C:49
Foam::DSMCCloud::parcelType
ParcelType parcelType
Type of parcel the cloud was instantiated for.
Definition: DSMCCloud.H:217
WenYuDragForce.H
lookup
stressControl lookup("compactNormalStress") >> compactNormalStress