HrenyaSinclairConductivity.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 | Copyright (C) 2011-2015 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::kineticTheoryModels::conductivityModels::HrenyaSinclair
26 
27 Description
28 
29 SourceFiles
30  HrenyaSinclair.C
31 
32 \*---------------------------------------------------------------------------*/
33 
34 #ifndef HrenyaSinclair_H
35 #define HrenyaSinclair_H
36 
37 #include "conductivityModel.H"
38 
39 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
40 
41 namespace Foam
42 {
43 namespace kineticTheoryModels
44 {
45 namespace conductivityModels
46 {
47 
48 /*---------------------------------------------------------------------------*\
49  Class HrenyaSinclair Declaration
50 \*---------------------------------------------------------------------------*/
51 
52 class HrenyaSinclair
53 :
54  public conductivityModel
55 {
56  dictionary coeffDict_;
57 
58  //- Characteristic length of geometry
60 
61 
62 public:
63 
64  //- Runtime type information
65  TypeName("HrenyaSinclair");
66 
67 
68  // Constructors
69 
70  //- Construct from components
71  HrenyaSinclair(const dictionary& dict);
72 
73 
74  //- Destructor
75  virtual ~HrenyaSinclair();
76 
77 
78  // Member Functions
79 
80  tmp<volScalarField> kappa
81  (
82  const volScalarField& alpha1,
83  const volScalarField& Theta,
84  const volScalarField& g0,
85  const volScalarField& rho1,
86  const volScalarField& da,
87  const dimensionedScalar& e
88  ) const;
89 
90  virtual bool read();
91 };
92 
93 
94 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
95 
96 } // End namespace conductivityModels
97 } // End namespace kineticTheoryModels
98 } // End namespace Foam
99 
100 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
101 
102 #endif
103 
104 // ************************************************************************* //
dictionary dict
const double e
Elementary charge.
Definition: doubleFloat.H:78
TypeName("HrenyaSinclair")
Runtime type information.
rho1
Definition: pEqn.H:114
GeometricField< scalar, fvPatchField, volMesh > volScalarField
Definition: volFieldsFwd.H:52
tmp< volScalarField > kappa(const volScalarField &alpha1, const volScalarField &Theta, const volScalarField &g0, const volScalarField &rho1, const volScalarField &da, const dimensionedScalar &e) const
HrenyaSinclair(const dictionary &dict)
Construct from components.
volScalarField & alpha1
dimensioned< scalar > dimensionedScalar
Dimensioned scalar obtained from generic dimensioned type.
Namespace for OpenFOAM.