initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / transportModels / incompressible / viscosityModels / powerLaw / powerLaw.H
blob88c1aeaf7793d107147e95e7daa58000334372d9
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::viscosityModels::powerLaw
28 Description
29      Standard power-law non-Newtonian viscosity model.
31 SourceFiles
32     powerLaw.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef powerLaw_H
37 #define powerLaw_H
39 #include "viscosityModel.H"
40 #include "dimensionedScalar.H"
41 #include "volFields.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 namespace Foam
47 namespace viscosityModels
50 /*---------------------------------------------------------------------------*\
51                            Class powerLaw Declaration
52 \*---------------------------------------------------------------------------*/
54 class powerLaw
56     public viscosityModel
58     // Private data
60         dictionary powerLawCoeffs_;
62         dimensionedScalar k_;
63         dimensionedScalar n_;
64         dimensionedScalar nuMin_;
65         dimensionedScalar nuMax_;
67         volScalarField nu_;
70     // Private Member Functions
72         //- Calculate and return the laminar viscosity
73         tmp<volScalarField> calcNu() const;
76 public:
78     //- Runtime type information
79     TypeName("powerLaw");
82     // Constructors
84         //- Construct from components
85         powerLaw
86         (
87             const word& name,
88             const dictionary& viscosityProperties,
89             const volVectorField& U,
90             const surfaceScalarField& phi
91         );
94     // Destructor
96         ~powerLaw()
97         {}
100     // Member Functions
102         //- Return the laminar viscosity
103         tmp<volScalarField> nu() const
104         {
105             return nu_;
106         }
108         //- Correct the laminar viscosity
109         void correct()
110         {
111             nu_ = calcNu();
112         }
114         //- Read transportProperties dictionary
115         bool read(const dictionary& viscosityProperties);
119 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
121 } // End namespace viscosityModels
122 } // End namespace Foam
124 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
126 #endif
128 // ************************************************************************* //