BUGFIX: Merge errors

This commit is contained in:
Henrik Rusche 2016-05-25 14:46:38 +02:00
parent d56de58fbb
commit 591c495f63
8 changed files with 32 additions and 30 deletions

View file

@ -14,7 +14,7 @@ FoamFile
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
T solvers
{ {
solver PBiCG; solver PBiCG;
preconditioner DILU; preconditioner DILU;

View file

@ -14,7 +14,7 @@ FoamFile
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
T solvers
{ {
solver PBiCG; solver PBiCG;
preconditioner DILU; preconditioner DILU;

View file

@ -111,7 +111,7 @@ PIMPLE
relaxationFactors relaxationFactors
{ {
U 1; "U.*" 1;
h 1; h 1;
k 1; k 1;
epsilon 1; epsilon 1;

View file

@ -16,7 +16,7 @@ FoamFile
solvers solvers
{ {
p p
{ {
solver PCG; solver PCG;
preconditioner DIC; preconditioner DIC;
@ -39,14 +39,6 @@ solvers
} }
} }
SIMPLE
{
nNonOrthogonalCorrectors 5;
pRefPoint (0 -0.45 0.05);
pRefValue 0;
}
PIMPLE PIMPLE
{ {
nOuterCorrectors 2; nOuterCorrectors 2;
@ -57,4 +49,10 @@ PIMPLE
pRefValue 0; pRefValue 0;
} }
relaxationFactors
{
"U.*" 1;
}
// ************************************************************************* // // ************************************************************************* //

View file

@ -32,6 +32,12 @@ solvers
relTol 0.1; relTol 0.1;
} }
UFinal
{
$U;
relTol 0;
}
"(k|epsilon)" "(k|epsilon)"
{ {
solver PBiCG; solver PBiCG;

View file

@ -30,7 +30,7 @@ divSchemes
{ {
default none; default none;
div(phi,U) Gauss linear grad(U); div(phi,U) Gauss linear grad(U);
div((nuEff*dev(grad(U).T()))) Gauss linear; div((nuEff*dev(T(grad(U))))) Gauss linear;
} }
laplacianSchemes laplacianSchemes

View file

@ -35,9 +35,7 @@ solvers
pFinal pFinal
{ {
solver PCG; $p;
preconditioner DIC;
tolerance 1e-06;
relTol 0; relTol 0;
} }
@ -49,6 +47,12 @@ solvers
relTol 0; relTol 0;
} }
UFinal
{
$U;
relTol 0;
}
cellMotionUx cellMotionUx
{ {
solver PCG; solver PCG;

View file

@ -28,6 +28,7 @@ solvers
} }
p p
{ {
$p;
solver CG; solver CG;
preconditioner DIC; preconditioner DIC;
@ -38,12 +39,7 @@ solvers
} }
pFinal pFinal
{ {
solver CG; $p;
preconditioner DIC;
minIter 0;
maxIter 1000;
tolerance 1e-06;
relTol 0; relTol 0;
} }
U U
@ -56,6 +52,12 @@ solvers
tolerance 1e-07; tolerance 1e-07;
relTol 0; relTol 0;
} }
UFinal
{
$U;
relTol 0;
}
} }
PIMPLE PIMPLE
@ -69,14 +71,6 @@ PIMPLE
pRefValue 0; pRefValue 0;
} }
SIMPLE
{
nNonOrthogonalCorrectors 4;
pRefCell 0;
pRefValue 0;
}
relaxationFactors relaxationFactors
{ {
U 0.7; U 0.7;