GidaspowViscosity.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) 2011-2023 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 "GidaspowViscosity.H"
27 #include "mathematicalConstants.H"
29 
30 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
31 
32 namespace Foam
33 {
34 namespace kineticTheoryModels
35 {
36 namespace viscosityModels
37 {
40 }
41 }
42 }
43 
44 
45 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
46 
48 (
49  const dictionary& dict
50 )
51 :
53 {}
54 
55 
56 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
57 
59 {}
60 
61 
62 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
63 
66 (
67  const volScalarField& alpha1,
68  const volScalarField& Theta,
69  const volScalarField& g0,
70  const volScalarField& rho1,
71  const volScalarField& da,
72  const dimensionedScalar& e
73 ) const
74 {
75  const scalar sqrtPi = sqrt(constant::mathematical::pi);
76 
77  return volScalarField::New
78  (
80  (
81  Foam::typedName<viscosityModel>("nu"),
82  Theta.group()
83  ),
84  da*sqrt(Theta)
85  *(
86  (4.0/5.0)*sqr(alpha1)*g0*(1.0 + e)/sqrtPi
87  + (1.0/15.0)*sqrtPi*g0*(1.0 + e)*sqr(alpha1)
88  + (1.0/6.0)*sqrtPi*alpha1
89  + (10.0/96.0)*sqrtPi/((1.0 + e)*g0)
90  )
91  );
92 }
93 
94 
95 // ************************************************************************* //
Macros for easy insertion into run-time selection tables.
Generic GeometricField class.
static tmp< GeometricField< Type, PatchField, GeoMesh > > New(const word &name, const Internal &, const PtrList< PatchField< Type >> &)
Return a temporary field constructed from name,.
static word group(const word &name)
Return group (extension part of name)
Definition: IOobject.C:134
static word groupName(Name name, const word &group)
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
tmp< volScalarField > nu(const volScalarField &alpha1, const volScalarField &Theta, const volScalarField &g0, const volScalarField &rho1, const volScalarField &da, const dimensionedScalar &e) const
Gidaspow(const dictionary &dict)
Construct from components.
A class for managing temporary objects.
Definition: tmp.H:55
addToRunTimeSelectionTable(viscosityModel, Gidaspow, dictionary)
Namespace for OpenFOAM.
const doubleScalar e
Definition: doubleScalar.H:105
dimensionedSymmTensor sqr(const dimensionedVector &dv)
dimensionedScalar sqrt(const dimensionedScalar &ds)
dictionary dict