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: ************************ //