1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1812 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "constant";
object transportProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
phases (sludge water);
sludge
{
transportModel BinghamPlastic;
"(plastic|BinghamPlastic)Coeffs"
{
coeff 0.00023143;
exponent 179.26;
BinghamCoeff 0.0005966;
BinghamExponent 1050.8;
BinghamOffset 0;
muMax 10;
}
rho 1996;
}
water
{
transportModel Newtonian;
nu 1.7871e-06;
rho 996;
}
relativeVelocityModel simple;
"(simple|general)Coeffs"
{
V0 (0 -0.002198 0);
a 285.84;
a1 0.1;
residualAlpha 0;
}
// ************************************************************************* //
|