HrenyaSinclairConductivity.H
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-2024 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 HrenyaSinclairConductivity_H
35 #define HrenyaSinclairConductivity_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  // Private Data
57 
58  //- Characteristic length of geometry
60 
61 
62  // Private member functions
63 
64  //- Read the coefficients from coeffDict
65  virtual bool readCoeffs(const dictionary& coeffDict);
66 
67 
68 public:
69 
70  //- Runtime type information
71  TypeName("HrenyaSinclair");
72 
73 
74  // Constructors
75 
76  //- Construct from the coefficients dictionary
77  HrenyaSinclair(const dictionary& coeffDict);
78 
79 
80  //- Destructor
81  virtual ~HrenyaSinclair();
82 
83 
84  // Member Functions
85 
87  (
88  const volScalarField& alpha1,
89  const volScalarField& Theta,
90  const volScalarField& g0,
91  const volScalarField& rho1,
92  const volScalarField& da,
93  const dimensionedScalar& e
94  ) const;
95 };
96 
97 
98 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
99 
100 } // End namespace conductivityModels
101 } // End namespace kineticTheoryModels
102 } // End namespace Foam
103 
104 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
105 
106 #endif
107 
108 // ************************************************************************* //
Generic GeometricField class.
A list of keywords followed by any number of values (e.g. words and numbers) or sub-dictionaries.
Definition: dictionary.H:162
tmp< volScalarField > kappa(const volScalarField &alpha1, const volScalarField &Theta, const volScalarField &g0, const volScalarField &rho1, const volScalarField &da, const dimensionedScalar &e) const
TypeName("HrenyaSinclair")
Runtime type information.
HrenyaSinclair(const dictionary &coeffDict)
Construct from the coefficients dictionary.
A class for managing temporary objects.
Definition: tmp.H:55
Namespace for OpenFOAM.
const doubleScalar e
Definition: doubleScalar.H:106