Correct cases for the new version of settlingFoam.

This commit is contained in:
henry
2009-08-12 23:00:15 +01:00
parent 4506ff0d9d
commit ff89303a7a
18 changed files with 200 additions and 143 deletions

View File

@ -45,7 +45,7 @@ boundaryField
top top
{ {
type symmetryPlane; type slip;
} }
frontAndBack frontAndBack

View File

@ -43,7 +43,7 @@ boundaryField
top top
{ {
type symmetryPlane; type zeroGradient;
} }
frontAndBack frontAndBack

View File

@ -43,7 +43,7 @@ boundaryField
top top
{ {
type symmetryPlane; type zeroGradient;
} }
frontAndBack frontAndBack

View File

@ -43,7 +43,7 @@ boundaryField
top top
{ {
type symmetryPlane; type zeroGradient;
} }
frontAndBack frontAndBack

View File

@ -39,13 +39,13 @@ boundaryField
endWall endWall
{ {
type buoyantPressure; type zeroGradient;
value uniform 0;
} }
top top
{ {
type symmetryPlane; type buoyantPressure;
value uniform 0;
} }
frontAndBack frontAndBack

View File

@ -61,7 +61,7 @@ patches
( (
(2 4 10 8) (2 4 10 8)
) )
symmetryPlane top patch top
( (
(5 11 10 4) (5 11 10 4)
) )

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\ /*--------------------------------*- C++ -*----------------------------------*\
| ========= | | | ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 | | \\ / O peration | Version: 1.6.x |
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
@ -43,7 +43,7 @@ FoamFile
} }
top top
{ {
type symmetryPlane; type patch;
nFaces 200; nFaces 200;
startFace 16040; startFace 16040;
} }

View File

@ -25,7 +25,7 @@ stopAt endTime;
endTime 6400; endTime 6400;
deltaT 0.2; deltaT 0.1;
writeControl runTime; writeControl runTime;

View File

@ -17,7 +17,7 @@ FoamFile
solvers solvers
{ {
"(p|rho)" p
{ {
solver PCG; solver PCG;
preconditioner DIC; preconditioner DIC;
@ -25,7 +25,39 @@ solvers
relTol 0; relTol 0;
} }
"(U|k|epsilon|Alpha)" 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
{ {
solver PBiCG; solver PBiCG;
preconditioner DILU; preconditioner DILU;

View File

@ -22,7 +22,7 @@ boundaryField
{ {
SYMP3 SYMP3
{ {
type symmetryPlane; type slip;
} }
INLE1 INLE1

View File

@ -22,7 +22,7 @@ boundaryField
{ {
SYMP3 SYMP3
{ {
type symmetryPlane; type zeroGradient;
} }
INLE1 INLE1

View File

@ -22,7 +22,7 @@ boundaryField
{ {
SYMP3 SYMP3
{ {
type symmetryPlane; type zeroGradient;
} }
INLE1 INLE1

View File

@ -22,7 +22,7 @@ boundaryField
{ {
SYMP3 SYMP3
{ {
type symmetryPlane; type zeroGradient;
} }
INLE1 INLE1

View File

@ -22,7 +22,8 @@ boundaryField
{ {
SYMP3 SYMP3
{ {
type symmetryPlane; type buoyantPressure;
value uniform 0;
} }
INLE1 INLE1

View File

@ -1,8 +0,0 @@
#!/bin/sh
# Source tutorial run functions
. $WM_PROJECT_DIR/bin/tools/RunFunctions
application=`getApplication`
#runApplication blockMesh
runApplication $application

View File

@ -17,7 +17,7 @@ FoamFile
( (
SYMP3 SYMP3
{ {
type symmetryPlane; type patch;
startFace 53708; startFace 53708;
nFaces 3191; nFaces 3191;
} }

View File

@ -17,7 +17,7 @@ FoamFile
solvers solvers
{ {
"(p|rho)" p
{ {
solver PCG; solver PCG;
preconditioner DIC; preconditioner DIC;
@ -25,7 +25,39 @@ solvers
relTol 0; relTol 0;
} }
"(U|k|epsilon|Alpha)" 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
{ {
solver PBiCG; solver PBiCG;
preconditioner DILU; preconditioner DILU;