FreeFOAM The Cross-Platform CFD Toolkit
plasticViscosity.H
Go to the documentation of this file.
2 (
3  const dimensionedScalar& plasticViscosityCoeff,
4  const dimensionedScalar& plasticViscosityExponent,
5  const volScalarField& alpha
6 )
7 {
8  return
9  (
10  plasticViscosityCoeff*
11  (
12  pow(10.0, plasticViscosityExponent*alpha + SMALL) - scalar(1)
13  )
14  );
15 }
16 
17 // ************************ vim: set sw=4 sts=4 et: ************************ //