initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / solvers / multiphase / twoPhaseEulerFoam / kineticTheoryModels / viscosityModel / viscosityModel / viscosityModel.H
blobceb7f72392109ec02b52181c88f0bb175c601abe
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     option) any later version.
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.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Class
26     Foam::viscosityModel
28 Description
30 SourceFiles
31     viscosityModel.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef viscosityModel_H
36 #define viscosityModel_H
38 #include "dictionary.H"
39 #include "volFields.H"
40 #include "dimensionedTypes.H"
41 #include "runTimeSelectionTables.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 namespace Foam
47 namespace kineticTheoryModels
50 /*---------------------------------------------------------------------------*\
51                            Class viscosityModel Declaration
52 \*---------------------------------------------------------------------------*/
54 class viscosityModel
56     // Private member functions
58         //- Disallow default bitwise copy construct
59         viscosityModel(const viscosityModel&);
61         //- Disallow default bitwise assignment
62         void operator=(const viscosityModel&);
65 protected:
67     // Protected data
69         const dictionary& dict_;
72 public:
74     //- Runtime type information
75     TypeName("viscosityModel");
77     // Declare runtime constructor selection table
78     declareRunTimeSelectionTable
79     (
80         autoPtr,
81         viscosityModel,
82         dictionary,
83         (
84             const dictionary& dict
85         ),
86         (dict)
87     );
90     // Constructors
92         //- Construct from components
93         viscosityModel(const dictionary& dict);
96     // Selectors
98         static autoPtr<viscosityModel> New
99         (
100             const dictionary& dict
101         );
104     //- Destructor
105     virtual ~viscosityModel();
108     // Member Functions
110         virtual tmp<volScalarField> mua
111         (
112             const volScalarField& alpha,
113             const volScalarField& Theta,
114             const volScalarField& g0,
115             const dimensionedScalar& rhoa,
116             const dimensionedScalar& da,
117             const dimensionedScalar& e
118         ) const = 0;
122 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
124 } // End namespace kineticTheoryModels
125 } // End namespace Foam
127 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
129 #endif
131 // ************************************************************************* //