Adding turbulence to RAS-Tjunction and reducing MRF in mixerVessel2D to make it laminar

This commit is contained in:
sergio 2017-12-19 11:02:31 -08:00
parent f97954b0b6
commit a6d88f2fe7
5 changed files with 13 additions and 11 deletions

View File

@ -42,7 +42,8 @@ boundaryField
defaultFaces defaultFaces
{ {
type noSlip; type fixedValue;
value uniform (0 0 0);
} }
} }

View File

@ -21,7 +21,7 @@ RAS
{ {
RASModel kEpsilon; RASModel kEpsilon;
turbulence off; turbulence on;
printCoeffs on; printCoeffs on;
} }

View File

@ -20,7 +20,7 @@ solvers
p p
{ {
solver GAMG; solver GAMG;
tolerance 1e-06; tolerance 1e-08;
relTol 0.01; relTol 0.01;
smoother GaussSeidel; smoother GaussSeidel;
} }
@ -28,7 +28,7 @@ solvers
pFinal pFinal
{ {
solver GAMG; solver GAMG;
tolerance 1e-06; tolerance 1e-08;
relTol 0; relTol 0;
smoother GaussSeidel; smoother GaussSeidel;
} }
@ -37,23 +37,24 @@ solvers
{ {
solver smoothSolver; solver smoothSolver;
smoother symGaussSeidel; smoother symGaussSeidel;
tolerance 1e-05; tolerance 1e-07;
relTol 0.1; relTol 0.05;
} }
"(rho|U|k|epsilon|h)Final" "(rho|U|k|epsilon|h)Final"
{ {
$U; $U;
tolerance 1e-05; tolerance 1e-07;
relTol 0; relTol 0;
} }
} }
PIMPLE PIMPLE
{ {
momentumPredictor no;
transonic no; transonic no;
nOuterCorrectors 1; nOuterCorrectors 1;
nCorrectors 3; nCorrectors 5;
nNonOrthogonalCorrectors 0; nNonOrthogonalCorrectors 0;
} }

View File

@ -25,7 +25,7 @@ MRF1
origin (0 0 0); origin (0 0 0);
axis (0 0 1); axis (0 0 1);
omega constant 6.2831853; omega constant 2.2831853;
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -48,11 +48,11 @@ solvers
relTol 0; relTol 0;
} }
"(U|T)" "(U|T).*"
{ {
solver smoothSolver; solver smoothSolver;
smoother symGaussSeidel; smoother symGaussSeidel;
tolerance 1e-06; tolerance 1e-08;
relTol 0; relTol 0;
} }
} }