adjust tutorial fvSolution to use regular expressions and $variable

This commit is contained in:
Mark Olesen
2009-08-01 14:51:59 +02:00
parent 8d78978645
commit d749aac04d
77 changed files with 377 additions and 2511 deletions

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -17,22 +17,6 @@ FoamFile
solvers
{
rho
{
solver PCG;
preconditioner DIC;
tolerance 1e-05;
relTol 0;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
p
{
solver PCG;
@ -41,79 +25,13 @@ solvers
relTol 0;
}
ft
rho
{
solver PBiCG;
preconditioner DILU;
$p;
tolerance 1e-05;
relTol 0;
}
fu
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
b
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
Xi
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
Su
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
h
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
hu
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
R
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
epsilon
"(U|ft|fu|b|Xi|Su|h|hu|R|k|epsilon)"
{
solver PBiCG;
preconditioner DILU;

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -17,22 +17,6 @@ FoamFile
solvers
{
rho
{
solver PCG;
preconditioner DIC;
tolerance 1e-05;
relTol 0;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
p
{
solver PCG;
@ -41,79 +25,14 @@ solvers
relTol 0;
}
ft
rho
{
solver PBiCG;
preconditioner DILU;
$p;
tolerance 1e-05;
relTol 0;
}
fu
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
b
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
Xi
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
Su
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
h
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
hu
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
R
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
epsilon
"(U|ft|fu|b|Xi|Su|h|hu|R|k|epsilon)"
{
solver PBiCG;
preconditioner DILU;

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -17,22 +17,6 @@ FoamFile
solvers
{
rho
{
solver PCG;
preconditioner DIC;
tolerance 1e-05;
relTol 0;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
p
{
solver PCG;
@ -41,79 +25,14 @@ solvers
relTol 0;
}
ft
rho
{
solver PBiCG;
preconditioner DILU;
$p;
tolerance 1e-05;
relTol 0;
}
fu
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
b
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
Xi
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
Su
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
h
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
hu
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
R
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
epsilon
"(U|ft|fu|b|Xi|Su|h|hu|R|k|epsilon)"
{
solver PBiCG;
preconditioner DILU;

View File

@ -1,14 +1,14 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format binary;
format ascii;
class dictionary;
location "system";
object fvSolution;
@ -17,22 +17,6 @@ FoamFile
solvers
{
rho
{
solver PCG;
preconditioner DIC;
tolerance 1e-06;
relTol 0;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
}
p
{
solver PCG;
@ -41,31 +25,13 @@ solvers
relTol 0;
}
Yi
rho
{
solver PBiCG;
preconditioner DILU;
$p;
tolerance 1e-06;
relTol 0;
}
h
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
}
epsilon
"(U|Yi|h|k|epsilon)"
{
solver PBiCG;
preconditioner DILU;

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -17,22 +17,6 @@ FoamFile
solvers
{
rho
{
solver PCG;
preconditioner DIC;
tolerance 1e-05;
relTol 0;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
p
{
solver PCG;
@ -41,79 +25,14 @@ solvers
relTol 0;
}
ft
rho
{
solver PBiCG;
preconditioner DILU;
$p;
tolerance 1e-05;
relTol 0;
}
fu
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
b
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
Xi
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
Su
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
h
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
hu
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
R
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
epsilon
"(U|ft|fu|b|Xi|Su|h|hu|R|k|epsilon)"
{
solver PBiCG;
preconditioner DILU;

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -17,10 +17,24 @@ FoamFile
solvers
{
rho
p
{
solver PCG;
preconditioner DIC;
tolerance 1e-06;
relTol 0.01;
}
pFinal
{
$p;
tolerance 1e-06;
relTol 0;
}
rho
{
$p;
tolerance 1e-05;
relTol 0;
}
@ -33,77 +47,15 @@ solvers
relTol 0.1;
}
UFinal
h { $U; }
"(UFinal|hFinal|R|k|epsilon|omega)"
{
solver PBiCG;
preconditioner DILU;
$U;
tolerance 1e-05;
relTol 0;
}
p
{
solver PCG;
preconditioner DIC;
tolerance 1e-06;
relTol 0.01;
}
pFinal
{
solver PCG;
preconditioner DIC;
tolerance 1e-06;
relTol 0;
}
h
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
hFinal
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
R
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
omega
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
}
PIMPLE
@ -117,12 +69,11 @@ PIMPLE
relaxationFactors
{
U 0.7;
p 0.3;
rho 0.05;
U 0.7;
h 0.7;
k 0.7;
omega 0.7;
"(k|epsilon|omega)" 0.7;
}

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -17,7 +17,7 @@ FoamFile
solvers
{
rho
"(p|rho)"
{
solver PCG;
preconditioner DIC;
@ -33,42 +33,9 @@ solvers
relTol 0;
}
p
"(U|k|B|nuTilda)"
{
solver PCG;
preconditioner DIC;
tolerance 1e-06;
relTol 0;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
B
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
nuTilda
{
solver PBiCG;
preconditioner DILU;
$h;
tolerance 1e-05;
relTol 0;
}

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -17,22 +17,6 @@ FoamFile
solvers
{
rho
{
solver PCG;
preconditioner DIC;
tolerance 1e-05;
relTol 0;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
p
{
solver PCG;
@ -41,39 +25,14 @@ solvers
relTol 0;
}
h
rho
{
solver PBiCG;
preconditioner DILU;
$p;
tolerance 1e-05;
relTol 0;
}
R
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
omega
"(U|h|R|k|epsilon|omega)"
{
solver PBiCG;
preconditioner DILU;

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -46,20 +46,9 @@ solvers
relTol 0.1;
}
k
"(k|epsilon)"
{
solver smoothSolver;
smoother GaussSeidel;
nSweeps 2;
tolerance 1e-07;
relTol 0.1;
}
epsilon
{
solver smoothSolver;
smoother GaussSeidel;
nSweeps 2;
$U;
tolerance 1e-07;
relTol 0.1;
}
@ -76,8 +65,7 @@ relaxationFactors
p 0.3;
rho 0.05;
U 0.7;
k 0.7;
epsilon 0.7;
"(k|epsilon)" 0.7;
h 0.5;
}

View File

@ -1,14 +1,14 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format binary;
format ascii;
class dictionary;
location "system";
object fvSolution;
@ -37,16 +37,7 @@ solvers
relTol 0.1;
}
k
{
solver smoothSolver;
smoother GaussSeidel;
nSweeps 2;
tolerance 1e-07;
relTol 0.1;
}
epsilon
"(k|epsilon)"
{
solver smoothSolver;
smoother GaussSeidel;
@ -68,8 +59,7 @@ relaxationFactors
p 0.3;
rho 1;
U 0.7;
k 0.9;
epsilon 0.9;
"(k|epsilon)" 0.9;
h 0.9;
}

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -17,31 +17,7 @@ FoamFile
solvers
{
p
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-15;
relTol 0;
}
rho
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-15;
relTol 0;
}
rhoU
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-15;
relTol 0;
}
rhoE
"(p|rho|rhoU|rhoE)"
{
solver PBiCG;
preconditioner DILU;

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -17,31 +17,7 @@ FoamFile
solvers
{
p
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-15;
relTol 0;
}
rho
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-15;
relTol 0;
}
rhoU
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-15;
relTol 0;
}
rhoE
"(p|rho|rhoU|rhoE)"
{
solver PBiCG;
preconditioner DILU;

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -25,31 +25,7 @@ solvers
relTol 0;
}
rho
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-15;
relTol 0;
}
rhoU
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-15;
relTol 0;
}
rhoE
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-15;
relTol 0;
}
rhoH
"(rho|rhoU|rhoE|rhoH)"
{
solver PBiCG;
preconditioner DILU;

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -25,31 +25,7 @@ solvers
relTol 0;
}
rho
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-15;
relTol 0;
}
rhoU
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-15;
relTol 0;
}
rhoE
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-15;
relTol 0;
}
rhoH
"(rho|rhoU|rhoE|rhoH)"
{
solver PBiCG;
preconditioner DILU;

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -25,10 +25,9 @@ solvers
relTol 0;
}
U
"(U|e)"
{
solver PBiCG;
preconditioner DILU;
$p;
tolerance 1e-05;
relTol 0;
}
@ -40,14 +39,6 @@ solvers
tolerance 1e-05;
relTol 0;
}
e
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
}
PISO

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -17,15 +17,7 @@ FoamFile
solvers
{
p
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-15;
relTol 0;
}
U
"(p|U|e)"
{
solver PBiCG;
preconditioner DILU;
@ -40,14 +32,6 @@ solvers
tolerance 1e-15;
relTol 0;
}
e
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-15;
relTol 0;
}
}
PISO

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -33,42 +33,9 @@ solvers
relTol 0;
}
U
"(U|e|k|epsilon|R)"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
e
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
R
{
solver PBiCG;
preconditioner DILU;
$p;
tolerance 1e-08;
relTol 0;
}

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -33,45 +33,20 @@ solvers
relTol 0;
}
U
"(U|e|R)"
{
solver PBiCG;
preconditioner DILU;
$p;
tolerance 1e-05;
relTol 0;
}
e
"(k|epsilon)"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
$p;
tolerance 1e-08;
relTol 0;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
R
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
}
PISO

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -27,8 +27,7 @@ solvers
U
{
solver PBiCG;
preconditioner DILU;
$p;
tolerance 1e-05;
relTol 0;
}

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -25,26 +25,17 @@ solvers
relTol 0;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
B
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
pB
{
solver PCG;
preconditioner DIC;
$p;
tolerance 1e-05;
relTol 0;
}
"(U|B)"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -27,45 +27,12 @@ solvers
pFinal
{
solver PCG;
preconditioner DIC;
$p;
tolerance 1e-07;
relTol 0;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
T
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
R
"(U|T|k|epsilon|R)"
{
solver PBiCG;
preconditioner DILU;

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -25,39 +25,7 @@ solvers
relTol 0.01;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
T
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
R
"(U|T|k|epsilon|R)"
{
solver PBiCG;
preconditioner DILU;
@ -79,9 +47,7 @@ relaxationFactors
p 0.7;
U 0.2;
T 0.7;
k 0.7;
epsilon 0.7;
R 0.7;
"(k|epsilon|R)" 0.7;
}

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -25,39 +25,7 @@ solvers
relTol 0.01;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
T
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
R
"(U|T|k|epsilon|R)"
{
solver PBiCG;
preconditioner DILU;
@ -79,9 +47,7 @@ relaxationFactors
p 0.3;
U 0.7;
T 0.7;
k 0.7;
epsilon 0.7;
R 0.7;
"(k|epsilon|R)" 0.7;
}

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -35,45 +35,12 @@ solvers
pFinal
{
solver PCG;
preconditioner DIC;
$p;
tolerance 1e-06;
relTol 0;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
h
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
R
"(U|h|k|epsilon|R)"
{
solver PBiCG;
preconditioner DILU;

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -25,39 +25,7 @@ solvers
relTol 0;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
h
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
R
"(U|h|k|epsilon|R)"
{
solver PBiCG;
preconditioner DILU;
@ -70,7 +38,7 @@ SIMPLE
{
nNonOrthogonalCorrectors 0;
pRefCell 0;
pRefValue 1e5;
pRefValue 100000;
}
relaxationFactors
@ -79,9 +47,7 @@ relaxationFactors
p 0.7;
U 0.2;
h 0.7;
k 0.7;
epsilon 0.7;
R 0.7;
"(k|epsilon|R)" 0.7;
}

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -25,31 +25,7 @@ solvers
relTol 0.01;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
h
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
epsilon
"(U|h|k|epsilon)"
{
solver PBiCG;
preconditioner DILU;
@ -59,8 +35,7 @@ solvers
G
{
solver PCG;
preconditioner DIC;
$p;
tolerance 1e-05;
relTol 0.1;
}
@ -79,8 +54,7 @@ relaxationFactors
p 0.3;
U 0.7;
h 0.7;
k 0.7;
epsilon 0.7;
"(k|epsilon)" 0.7;
G 0.7;
}

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -29,39 +29,7 @@ solvers
mergeLevels 1;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
h
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
Ii
"(U|h|k|epsilon|Ii)"
{
solver PBiCG;
preconditioner DILU;
@ -79,12 +47,11 @@ SIMPLE
relaxationFactors
{
rho 1.0;
rho 1;
p 0.3;
U 0.7;
h 0.7;
k 0.7;
epsilon 0.7;
"(k|epsilon)" 0.7;
"ILambda.*" 0.7;
}

View File

@ -22,7 +22,8 @@ solvers
preconditioner DIC;
tolerance 1e-8;
relTol 0;
};
}
p
{
solver GAMG;
@ -35,64 +36,34 @@ solvers
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
};
}
pFinal
{
solver GAMG;
$p;
tolerance 1e-8;
relTol 0;
}
smoother GaussSeidel;
cacheAgglomeration true;
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
};
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
}
h
{
solver PBiCG;
preconditioner DILU;
$U;
tolerance 1e-08;
relTol 0.1;
};
hFinal
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
}
k
"(hFinal|k|epsilon|R)"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
R
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
$U;
}
}
PISO

View File

@ -22,7 +22,7 @@ solvers
preconditioner DIC;
tolerance 1E-06;
relTol 0;
};
}
}
PISO

View File

@ -22,7 +22,7 @@ solvers
preconditioner DIC;
tolerance 1E-06;
relTol 0;
};
}
}
PISO

View File

@ -22,7 +22,7 @@ solvers
preconditioner DIC;
tolerance 1E-06;
relTol 0;
};
}
}
PISO

View File

@ -22,7 +22,8 @@ solvers
preconditioner DIC;
tolerance 1e-8;
relTol 0;
};
}
p
{
solver GAMG;
@ -35,64 +36,34 @@ solvers
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
};
}
pFinal
{
solver GAMG;
$p;
tolerance 1e-8;
relTol 0;
}
smoother GaussSeidel;
cacheAgglomeration true;
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
};
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
}
h
{
solver PBiCG;
preconditioner DILU;
$U;
tolerance 1e-08;
relTol 0.1;
};
hFinal
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
}
k
"(hFinal|k|epsilon|R)"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
R
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
$U;
}
}
PISO

View File

@ -22,7 +22,8 @@ solvers
preconditioner DIC;
tolerance 1e-8;
relTol 0;
};
}
p
{
solver GAMG;
@ -35,64 +36,35 @@ solvers
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
};
}
pFinal
{
solver GAMG;
$p;
tolerance 1e-8;
relTol 0;
}
smoother GaussSeidel;
cacheAgglomeration true;
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
};
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
}
h
{
solver PBiCG;
preconditioner DILU;
$U;
tolerance 1e-08;
relTol 0.1;
};
hFinal
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
}
k
"(hFinal|k|epsilon|R)"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
R
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
$U;
}
}
PISO

View File

@ -22,7 +22,7 @@ solvers
preconditioner DIC;
tolerance 1E-06;
relTol 0;
};
}
}
PISO

View File

@ -22,7 +22,7 @@ solvers
preconditioner DIC;
tolerance 1E-06;
relTol 0;
};
}
}
PISO

View File

@ -22,7 +22,7 @@ solvers
preconditioner DIC;
tolerance 1E-06;
relTol 0;
};
}
}
PISO

View File

@ -22,7 +22,8 @@ solvers
preconditioner DIC;
tolerance 1e-8;
relTol 0;
};
}
p
{
solver GAMG;
@ -35,64 +36,34 @@ solvers
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
};
}
pFinal
{
solver GAMG;
$p;
tolerance 1e-8;
relTol 0;
}
smoother GaussSeidel;
cacheAgglomeration true;
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
};
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
}
h
{
solver PBiCG;
preconditioner DILU;
$U;
tolerance 1e-08;
relTol 0.1;
};
hFinal
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
}
k
"(hFinal|k|epsilon|R)"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
R
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
$U;
}
}
PISO

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -29,25 +29,7 @@ solvers
mergeLevels 1;
}
U
{
solver smoothSolver;
smoother GaussSeidel;
nSweeps 2;
tolerance 1e-07;
relTol 0.1;
}
k
{
solver smoothSolver;
smoother GaussSeidel;
nSweeps 2;
tolerance 1e-07;
relTol 0.1;
}
epsilon
"(U|k|epsilon)"
{
solver smoothSolver;
smoother GaussSeidel;
@ -68,8 +50,7 @@ relaxationFactors
{
p 0.3;
U 0.5;
k 0.5;
epsilon 0.5;
"(k|epsilon)" 0.5;
}

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -25,31 +25,7 @@ solvers
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
}
R
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
}
nuTilda
"(k|epsilon|R|nuTilda)"
{
solver PBiCG;
preconditioner DILU;
@ -67,9 +43,7 @@ PISO
relaxationFactors
{
U 0.5;
k 0.7;
epsilon 0.7;
R 0.7;
"(k|epsilon|R)" 0.7;
nuTilda 0.7;
}

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -25,31 +25,7 @@ solvers
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
}
R
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
}
nuTilda
"(k|epsilon|R|nuTilda)"
{
solver PBiCG;
preconditioner DILU;
@ -69,9 +45,7 @@ PISO
relaxationFactors
{
U 0.5;
k 0.7;
epsilon 0.7;
R 0.7;
"(k|epsilon|R)" 0.7;
nuTilda 0.7;
}

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -27,37 +27,12 @@ solvers
pFinal
{
solver PCG;
preconditioner DIC;
$p;
tolerance 1e-06;
relTol 0;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
B
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
nuTilda
"(U|k|B|nuTilda)"
{
solver PBiCG;
preconditioner DILU;

View File

@ -17,14 +17,6 @@ FoamFile
solvers
{
pcorr
{
solver PCG;
preconditioner DIC;
tolerance 0.01;
relTol 0;
}
p
{
solver PCG;
@ -33,14 +25,27 @@ solvers
relTol 0.05;
}
pcorr
{
$p;
tolerance 0.01;
relTol 0;
}
pFinal
{
solver PCG;
preconditioner DIC;
$p;
tolerance 1e-06;
relTol 0;
}
cellMotionUx
{
$p;
tolerance 1e-08;
relTol 0;
}
U
{
solver PBiCG;
@ -48,14 +53,6 @@ solvers
tolerance 1e-05;
relTol 0;
}
cellMotionUx
{
solver PCG;
preconditioner DIC;
tolerance 1e-08;
relTol 0;
}
}
PIMPLE

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -31,14 +31,9 @@ solvers
pFinal
{
solver GAMG;
$p;
tolerance 1e-06;
relTol 0;
smoother GaussSeidel;
cacheAgglomeration true;
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
}
U
@ -49,26 +44,9 @@ solvers
relTol 0.1;
}
UFinal
"(UFinal|k|epsilon)"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
$U;
tolerance 1e-05;
relTol 0;
}
@ -86,8 +64,7 @@ PIMPLE
relaxationFactors
{
U 1;
k 1;
epsilon 1;
"(k|epsilon)" 1;
}

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -27,37 +27,12 @@ solvers
pFinal
{
solver PCG;
preconditioner DIC;
$p;
tolerance 1e-06;
relTol 0;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
B
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
nuTilda
"(U|k|B|nuTilda)"
{
solver PBiCG;
preconditioner DILU;

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -27,37 +27,12 @@ solvers
pFinal
{
solver PCG;
preconditioner DIC;
$p;
tolerance 1e-06;
relTol 0;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
B
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
nuTilda
"(U|k|B|nuTilda)"
{
solver PBiCG;
preconditioner DILU;

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -27,45 +27,12 @@ solvers
pFinal
{
solver PCG;
preconditioner DIC;
$p;
tolerance 1e-06;
relTol 0;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
R
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
nuTilda
"(U|k|epsilon|R|nuTilda)"
{
solver PBiCG;
preconditioner DILU;

View File

@ -22,15 +22,14 @@ solvers
preconditioner DIC;
tolerance 1e-6;
relTol 0.01;
};
}
hFinal
{
solver PCG;
preconditioner DIC;
$h;
tolerance 1e-8;
relTol 0;
};
}
hU
{

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -31,16 +31,7 @@ solvers
mergeLevels 1;
}
U
{
solver smoothSolver;
smoother GaussSeidel;
nSweeps 2;
tolerance 1e-08;
relTol 0.1;
}
nuTilda
"(U|nuTilda)"
{
solver smoothSolver;
smoother GaussSeidel;

View File

@ -1,8 +1,8 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
@ -10,6 +10,7 @@ FoamFile
version 2.0;
format ascii;
class dictionary;
location "system";
object fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -19,7 +20,7 @@ solvers
p
{
solver GAMG;
tolerance 1e-7;
tolerance 1e-07;
relTol 0.1;
smoother GaussSeidel;
nPreSweeps 0;
@ -28,34 +29,16 @@ solvers
agglomerator faceAreaPair;
nCellsInCoarsestLevel 10;
mergeLevels 1;
};
}
U
"(U|k|omega)"
{
solver smoothSolver;
smoother GaussSeidel;
tolerance 1e-8;
tolerance 1e-08;
relTol 0.1;
nSweeps 1;
};
k
{
solver smoothSolver;
smoother GaussSeidel;
tolerance 1e-8;
relTol 0.1;
nSweeps 1;
};
omega
{
solver smoothSolver;
smoother GaussSeidel;
tolerance 1e-8;
relTol 0.1;
nSweeps 1;
};
}
}
SIMPLE
@ -67,8 +50,8 @@ relaxationFactors
{
p 0.3;
U 0.7;
k 0.7;
omega 0.7;
"(k|omega)" 0.7;
}
// ************************************************************************* //

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -25,39 +25,7 @@ solvers
relTol 0.01;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
R
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
nuTilda
"(U|k|epsilon|R|nuTilda)"
{
solver PBiCG;
preconditioner DILU;
@ -75,9 +43,7 @@ relaxationFactors
{
p 0.3;
U 0.7;
k 0.7;
epsilon 0.7;
R 0.7;
"(k|epsilon|R)" 0.7;
nuTilda 0.7;
}

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -25,39 +25,7 @@ solvers
relTol 0.01;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
R
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
nuTilda
"(U|k|epsilon|R|nuTilda)"
{
solver PBiCG;
preconditioner DILU;
@ -75,9 +43,7 @@ relaxationFactors
{
p 0.3;
U 0.7;
k 0.7;
epsilon 0.7;
R 0.7;
"(k|epsilon|R)" 0.7;
nuTilda 0.7;
}

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -25,47 +25,7 @@ solvers
relTol 0.01;
}
Urel
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
omega
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
R
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}
nuTilda
"(Urel|k|epsilon|omega|R|nuTilda)"
{
solver PBiCG;
preconditioner DILU;
@ -83,10 +43,7 @@ relaxationFactors
{
p 0.3;
Urel 0.7;
k 0.7;
epsilon 0.7;
omega 0.7;
R 0.7;
"(k|epsilon|omega|R)" 0.7;
nuTilda 0.7;
}

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -17,118 +17,37 @@ FoamFile
solvers
{
rho
"(rho|G)"
{
solver PCG;
preconditioner DIC;
tolerance 1e-05;
relTol 0;
};
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
};
}
p
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
};
G
{
solver PCG;
preconditioner DIC;
tolerance 1e-05;
relTol 0;
};
Yi
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
};
CO2
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
};
O2
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
};
N2
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
};
CH4
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
};
H2
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
};
H2O
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
};
CO
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
};
h
}
"(U|h|R|k|epsilon)"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
};
R
}
"(Yi|CO2|O2|N2|CH4|H2|H2O|CO)"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
tolerance 1e-06;
relTol 0;
};
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
};
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
};
}
}
PISO

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -17,108 +17,50 @@ FoamFile
solvers
{
rho
"(rho|G)"
{
solver PCG;
preconditioner DIC;
tolerance 1e-05;
relTol 0;
};
U
}
"(U|h|k|epsilon)"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
};
}
p
{
solver GAMG;
tolerance 0;
relTol 0.1;
smoother GaussSeidel;
nPreSweeps 0;
nPostSweeps 2;
cacheAgglomeration true;
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
};
}
pFinal
{
solver GAMG;
tolerance 1e-6;
$p;
tolerance 1e-06;
relTol 0;
}
smoother GaussSeidel;
nPreSweeps 0;
nPostSweeps 2;
cacheAgglomeration true;
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
};
G
{
solver PCG;
preconditioner DIC;
tolerance 1e-05;
relTol 0;
};
Yi
"(Yi|O2|N2|H2O)"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
};
O2
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
};
N2
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
};
H2O
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
};
h
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
};
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
};
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
};
}
}
PISO
@ -128,7 +70,6 @@ PISO
nCorrectors 2;
nNonOrthogonalCorrectors 0;
momentumPredictor yes;
// nUCorrectors 2;
}
additional
@ -140,14 +81,7 @@ additional
relaxationFactors
{
/*
U 1;
k 1;
kepsilon 1;
h 1;
rho 1;
p 1;
*/
}
// ************************************************************************* //

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -17,20 +17,22 @@ FoamFile
solvers
{
rho
"(rho|G)"
{
solver PCG;
preconditioner DIC;
tolerance 1e-05;
relTol 0;
}
U
"(U|h|k|epsilon)"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
p
{
solver PCG;
@ -38,62 +40,14 @@ solvers
tolerance 1e-06;
relTol 0;
}
G
{
solver PCG;
preconditioner DIC;
tolerance 1e-05;
relTol 0;
}
Yi
"(Yi|O2|N2|H2O)"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
}
O2
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
}
N2
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
}
H2O
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
}
h
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
}
PISO

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -17,7 +17,7 @@ FoamFile
solvers
{
rho
"(rho|G)"
{
solver PCG;
preconditioner DIC;
@ -25,14 +25,6 @@ solvers
relTol 0;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
p
{
solver PBiCG;
@ -41,108 +33,16 @@ solvers
relTol 0;
}
G
"(U|h|R|k|epsilon)"
{
solver PCG;
preconditioner DIC;
$p;
tolerance 1e-05;
relTol 0;
}
Yi
"(Yi|CO2|O2|N2|CH4|H2|H2O|CO)"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
}
CO2
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
}
O2
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
}
N2
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
}
CH4
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
}
H2
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
}
H2O
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
}
CO
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
}
h
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
R
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
$p;
}
}

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -23,7 +23,7 @@ solvers
preconditioner DIC;
tolerance 1e-06;
relTol 0;
};
}
U
{
@ -31,32 +31,26 @@ solvers
preconditioner DILU;
tolerance 1e-05;
relTol 0;
};
}
cellDisplacement
{
solver GAMG;
tolerance 1e-8;
tolerance 1e-08;
relTol 0;
smoother GaussSeidel;
cacheAgglomeration true;
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
};
cellMotionU
}
"(cellMotionU|cellMotionUz)"
{
solver PCG;
preconditioner DIC;
$p;
tolerance 1e-08;
relTol 0;
};
cellMotionUz
{
solver PCG;
preconditioner DIC;
tolerance 1e-08;
relTol 0;
};
}
}

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -25,7 +25,7 @@ solvers
relTol 0;
}
Ua
"(Ua|Ub|k|epsilon)"
{
solver PBiCG;
preconditioner DILU;
@ -33,45 +33,13 @@ solvers
relTol 0;
}
Ub
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
alpha
"(alpha|beta)"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-10;
relTol 0;
}
beta
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-10;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
}
PISO

View File

@ -1,14 +1,14 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format binary;
format ascii;
class dictionary;
location "system";
object fvSolution;
@ -17,31 +17,7 @@ FoamFile
solvers
{
omega
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
rho
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
U
"(rho|U|k|omega)"
{
solver PBiCG;
preconditioner DILU;
@ -65,16 +41,9 @@ solvers
pFinal
{
solver GAMG;
$p;
tolerance 1e-08;
relTol 0;
smoother GaussSeidel;
nPreSweeps 0;
nPostSweeps 2;
cacheAgglomeration true;
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
}
}

View File

@ -1,14 +1,14 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format binary;
format ascii;
class dictionary;
location "system";
object fvSolution;
@ -17,31 +17,7 @@ FoamFile
solvers
{
omega
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
rho
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
U
"(rho|U|k|omega)"
{
solver PBiCG;
preconditioner DILU;
@ -65,16 +41,9 @@ solvers
pFinal
{
solver GAMG;
$p;
tolerance 1e-08;
relTol 0;
smoother GaussSeidel;
nPreSweeps 0;
nPostSweeps 2;
cacheAgglomeration true;
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
}
}

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -17,31 +17,7 @@ FoamFile
solvers
{
omega
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
rho
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
U
"(rho|U|k|omega)"
{
solver PBiCG;
preconditioner DILU;
@ -65,16 +41,9 @@ solvers
pFinal
{
solver GAMG;
$p;
tolerance 1e-08;
relTol 0;
smoother GaussSeidel;
nPreSweeps 0;
nPostSweeps 2;
cacheAgglomeration true;
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
}
}

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -34,7 +34,6 @@ solvers
agglomerator faceAreaPair;
mergeLevels 1;
}
tolerance 1e-05;
relTol 0;
maxIter 100;
@ -78,7 +77,6 @@ solvers
agglomerator faceAreaPair;
mergeLevels 1;
}
tolerance 1e-07;
relTol 0;
maxIter 20;
@ -93,23 +91,7 @@ solvers
nSweeps 1;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
B
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
nuTilda
"(k|B|nuTilda)"
{
solver PBiCG;
preconditioner DILU;

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -34,7 +34,6 @@ solvers
agglomerator faceAreaPair;
mergeLevels 1;
}
tolerance 1e-05;
relTol 0;
maxIter 100;
@ -78,7 +77,6 @@ solvers
agglomerator faceAreaPair;
mergeLevels 1;
}
tolerance 1e-07;
relTol 0;
maxIter 20;
@ -93,23 +91,7 @@ solvers
nSweeps 1;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
B
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
nuTilda
"(k|B|nuTilda)"
{
solver PBiCG;
preconditioner DILU;

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -34,7 +34,6 @@ solvers
agglomerator faceAreaPair;
mergeLevels 1;
}
tolerance 0.0001;
relTol 0;
maxIter 100;
@ -73,7 +72,6 @@ solvers
agglomerator faceAreaPair;
mergeLevels 1;
}
tolerance 1e-08;
relTol 0;
maxIter 20;
@ -88,23 +86,7 @@ solvers
nSweeps 1;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
B
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
nuTilda
"(k|B|nuTilda)"
{
solver PBiCG;
preconditioner DILU;
@ -121,8 +103,7 @@ PISO
nAlphaCorr 1;
nAlphaSubCycles 3;
cAlpha 1;
pRefPoint (0.51 0.51 0.51);
pRefPoint ( 0.51 0.51 0.51 );
pRefValue 0;
}

View File

@ -35,8 +35,7 @@ solvers
pFinal
{
solver PCG;
preconditioner DIC;
$p;
tolerance 1e-07;
relTol 0;
}

View File

@ -35,8 +35,7 @@ solvers
pFinal
{
solver PCG;
preconditioner DIC;
$p;
tolerance 1e-07;
relTol 0;
}

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -34,7 +34,6 @@ solvers
agglomerator faceAreaPair;
mergeLevels 1;
}
tolerance 1e-05;
relTol 0;
maxIter 100;
@ -73,7 +72,6 @@ solvers
agglomerator faceAreaPair;
mergeLevels 1;
}
tolerance 1e-07;
relTol 0;
maxIter 20;
@ -88,23 +86,7 @@ solvers
nSweeps 1;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
B
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
nuTilda
"(k|B|nuTilda)"
{
solver PBiCG;
preconditioner DILU;

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -35,8 +35,7 @@ solvers
pFinal
{
solver PCG;
preconditioner DIC;
$p;
tolerance 1e-07;
relTol 0;
}
@ -49,34 +48,9 @@ solvers
relTol 0;
}
k
"(k|epsilon|R|nuTilda)"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
R
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
nuTilda
{
solver PBiCG;
preconditioner DILU;
$U;
tolerance 1e-08;
relTol 0;
}

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -34,7 +34,6 @@ solvers
agglomerator faceAreaPair;
mergeLevels 2;
}
tolerance 1e-05;
relTol 0;
maxIter 100;
@ -73,22 +72,12 @@ solvers
agglomerator faceAreaPair;
mergeLevels 1;
}
tolerance 1e-07;
relTol 0;
maxIter 20;
}
U
{
solver smoothSolver;
smoother GaussSeidel;
tolerance 1e-08;
relTol 0;
nSweeps 1;
}
alpha
"(U|alpha)"
{
solver smoothSolver;
smoother GaussSeidel;

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -34,7 +34,6 @@ solvers
agglomerator faceAreaPair;
mergeLevels 2;
}
tolerance 1e-05;
relTol 0;
maxIter 100;
@ -73,22 +72,12 @@ solvers
agglomerator faceAreaPair;
mergeLevels 1;
}
tolerance 1e-07;
relTol 0;
maxIter 20;
}
U
{
solver smoothSolver;
smoother GaussSeidel;
tolerance 1e-08;
relTol 0;
nSweeps 1;
}
alpha
"(U|alpha)"
{
solver smoothSolver;
smoother GaussSeidel;

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -17,7 +17,7 @@ FoamFile
solvers
{
p
"(p|rho)"
{
solver PCG;
preconditioner DIC;
@ -25,39 +25,7 @@ solvers
relTol 0;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-07;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-07;
relTol 0;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-07;
relTol 0;
}
rho
{
solver PCG;
preconditioner DIC;
tolerance 1e-07;
relTol 0;
}
Alpha
"(U|k|epsilon|Alpha)"
{
solver PBiCG;
preconditioner DILU;

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -17,7 +17,7 @@ FoamFile
solvers
{
p
"(p|rho)"
{
solver PCG;
preconditioner DIC;
@ -25,39 +25,7 @@ solvers
relTol 0;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-07;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-07;
relTol 0;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-07;
relTol 0;
}
rho
{
solver PCG;
preconditioner DIC;
tolerance 1e-07;
relTol 0;
}
Alpha
"(U|k|epsilon|Alpha)"
{
solver PBiCG;
preconditioner DILU;

View File

@ -1,14 +1,14 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format binary;
format ascii;
class dictionary;
location "system";
object fvSolution;
@ -32,7 +32,7 @@ solvers
mergeLevels 1;
}
Ua
"(Ua|Ub|Theta|k|epsilon)"
{
solver PBiCG;
preconditioner DILU;
@ -40,53 +40,13 @@ solvers
relTol 0;
}
Ub
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
alpha
"(alpha|beta)"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-10;
relTol 0;
}
beta
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-10;
relTol 0;
}
Theta
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
}
PISO

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -32,7 +32,7 @@ solvers
mergeLevels 1;
}
Ua
"(Ua|Ub|Theta|k|epsilon)"
{
solver PBiCG;
preconditioner DILU;
@ -40,53 +40,13 @@ solvers
relTol 0;
}
Ub
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
alpha
"(alpha|beta)"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-10;
relTol 0;
}
beta
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-10;
relTol 0;
}
Theta
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
}
PISO
@ -106,8 +66,7 @@ relaxationFactors
alpha 1;
beta 1;
Theta 1;
k 1;
epsilon 1;
"(k|epsilon)" 1;
}

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -32,7 +32,7 @@ solvers
mergeLevels 1;
}
Ua
"(Ua|Ub|Theta|k|epsilon)"
{
solver PBiCG;
preconditioner DILU;
@ -40,53 +40,13 @@ solvers
relTol 0;
}
Ub
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
alpha
"(alpha|beta)"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-10;
relTol 0;
}
beta
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-10;
relTol 0;
}
Theta
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
}
PISO

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -17,19 +17,7 @@ FoamFile
solvers
{
D
{
solver GAMG;
tolerance 1e-06;
relTol 0.9;
smoother GaussSeidel;
cacheAgglomeration true;
nCellsInCoarsestLevel 20;
agglomerator faceAreaPair;
mergeLevels 1;
}
T
"(D|T)"
{
solver GAMG;
tolerance 1e-06;

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -17,19 +17,7 @@ FoamFile
solvers
{
D
{
solver GAMG;
tolerance 1e-06;
relTol 0.99;
smoother GaussSeidel;
cacheAgglomeration true;
nCellsInCoarsestLevel 6;
agglomerator faceAreaPair;
mergeLevels 1;
}
Dcorr
"(D|Dcorr)"
{
solver GAMG;
tolerance 1e-06;