initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / transportModels / incompressible / viscosityModels / powerLaw / powerLaw.C
bloba1489dc77943a9f38fa4c3d11ecfbcf673eedb00
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 \*---------------------------------------------------------------------------*/
27 #include "powerLaw.H"
28 #include "addToRunTimeSelectionTable.H"
29 #include "surfaceFields.H"
31 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
33 namespace Foam
35 namespace viscosityModels
37     defineTypeNameAndDebug(powerLaw, 0);
39     addToRunTimeSelectionTable
40     (
41         viscosityModel,
42         powerLaw,
43         dictionary
44     );
49 // * * * * * * * * * * * * Private Member Functions  * * * * * * * * * * * * //
51 Foam::tmp<Foam::volScalarField>
52 Foam::viscosityModels::powerLaw::calcNu() const
54     return max
55     (
56         nuMin_,
57         min
58         (
59             nuMax_,
60             k_*pow
61             (
62                 max
63                 (
64                     dimensionedScalar("one", dimTime, 1.0)*strainRate(),
65                     dimensionedScalar("VSMALL", dimless, VSMALL)
66                 ),
67                 n_.value() - scalar(1.0)
68             )
69         )
70     );
74 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
76 Foam::viscosityModels::powerLaw::powerLaw
78     const word& name,
79     const dictionary& viscosityProperties,
80     const volVectorField& U,
81     const surfaceScalarField& phi
84     viscosityModel(name, viscosityProperties, U, phi),
85     powerLawCoeffs_(viscosityProperties.subDict(typeName + "Coeffs")),
86     k_(powerLawCoeffs_.lookup("k")),
87     n_(powerLawCoeffs_.lookup("n")),
88     nuMin_(powerLawCoeffs_.lookup("nuMin")),
89     nuMax_(powerLawCoeffs_.lookup("nuMax")),
90     nu_
91     (
92         IOobject
93         (
94             name,
95             U_.time().timeName(),
96             U_.db(),
97             IOobject::NO_READ,
98             IOobject::AUTO_WRITE
99         ),
100         calcNu()
101     )
105 // * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * * //
107 bool Foam::viscosityModels::powerLaw::read
109     const dictionary& viscosityProperties
112     viscosityModel::read(viscosityProperties);
114     powerLawCoeffs_ = viscosityProperties.subDict(typeName + "Coeffs");
116     powerLawCoeffs_.lookup("k") >> k_;
117     powerLawCoeffs_.lookup("n") >> n_;
118     powerLawCoeffs_.lookup("nuMin") >> nuMin_;
119     powerLawCoeffs_.lookup("nuMax") >> nuMax_;
121     return true;
125 // ************************************************************************* //