1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
7 -------------------------------------------------------------------------------
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
13 the Free Software Foundation, either version 3 of the License, or
14 (at your 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
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/>.
24 \*---------------------------------------------------------------------------*/
26 #include "CrossPowerLaw.H"
27 #include "addToRunTimeSelectionTable.H"
28 #include "surfaceFields.H"
30 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
34 namespace viscosityModels
36 defineTypeNameAndDebug(CrossPowerLaw, 0);
38 addToRunTimeSelectionTable
48 // * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * * //
50 Foam::tmp<Foam::volScalarField>
51 Foam::viscosityModels::CrossPowerLaw::calcNu() const
53 return (nu0_ - nuInf_)/(scalar(1) + pow(m_*strainRate(), n_)) + nuInf_;
57 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
59 Foam::viscosityModels::CrossPowerLaw::CrossPowerLaw
62 const dictionary& viscosityProperties,
63 const volVectorField& U,
64 const surfaceScalarField& phi
67 viscosityModel(name, viscosityProperties, U, phi),
68 CrossPowerLawCoeffs_(viscosityProperties.subDict(typeName + "Coeffs")),
69 nu0_(CrossPowerLawCoeffs_.lookup("nu0")),
70 nuInf_(CrossPowerLawCoeffs_.lookup("nuInf")),
71 m_(CrossPowerLawCoeffs_.lookup("m")),
72 n_(CrossPowerLawCoeffs_.lookup("n")),
88 // * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
90 bool Foam::viscosityModels::CrossPowerLaw::read
92 const dictionary& viscosityProperties
95 viscosityModel::read(viscosityProperties);
97 CrossPowerLawCoeffs_ = viscosityProperties.subDict(typeName + "Coeffs");
99 CrossPowerLawCoeffs_.lookup("nu0") >> nu0_;
100 CrossPowerLawCoeffs_.lookup("nuInf") >> nuInf_;
101 CrossPowerLawCoeffs_.lookup("m") >> m_;
102 CrossPowerLawCoeffs_.lookup("n") >> n_;
108 // ************************************************************************* //