FreeFOAM The Cross-Platform CFD Toolkit
Hosted by SourceForge:
Get FreeFOAM at SourceForge.net.
            Fast, secure and Free Open Source software downloads

plasticViscosity.H

Go to the documentation of this file.
00001 volScalarField plasticViscosity
00002 (
00003     const dimensionedScalar& plasticViscosityCoeff,
00004     const dimensionedScalar& plasticViscosityExponent,
00005     const volScalarField& alpha
00006 )
00007 {
00008     return
00009     (
00010          plasticViscosityCoeff*
00011          (
00012              pow(10.0, plasticViscosityExponent*alpha + SMALL) - scalar(1)
00013          )
00014     );
00015 }
00016 
00017 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines