more updates...

This commit is contained in:
andy
2009-02-13 18:31:15 +00:00
parent a5b039b4ca
commit 00fbaf627a
72 changed files with 797 additions and 443 deletions

View File

@ -2,7 +2,7 @@
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.5 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
@ -10,11 +10,11 @@ FoamFile
version 2.0;
format ascii;
class dictionary;
location "system";
object controlDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
startFrom latestTime;
startTime 0;
@ -47,6 +47,7 @@ adjustTimeStep yes;
maxCo 0.5;
maxDeltaT 1.0;
maxDeltaT 1;
// ************************************************************************* //

View File

@ -2,7 +2,7 @@
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.5 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
@ -10,6 +10,7 @@ FoamFile
version 2.0;
format ascii;
class dictionary;
location "system";
object decomposeParDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -20,26 +21,20 @@ method simple;
simpleCoeffs
{
n (2 2 1);
n ( 2 2 1 );
delta 0.001;
}
hierarchicalCoeffs
{
n (1 1 1);
n ( 1 1 1 );
delta 0.001;
order xyz;
}
metisCoeffs
{
processorWeights
(
1
1
1
1
);
processorWeights ( 1 1 1 1 );
}
manualCoeffs
@ -49,8 +44,7 @@ manualCoeffs
distributed no;
roots
(
);
roots ( );
// ************************************************************************* //

View File

@ -2,7 +2,7 @@
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.5 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
@ -10,13 +10,14 @@ FoamFile
version 2.0;
format ascii;
class dictionary;
location "system";
object fvSchemes;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
ddtSchemes
{
default Euler;
default Euler;
}
gradSchemes
@ -29,8 +30,8 @@ gradSchemes
divSchemes
{
div(rho*phi,U) Gauss upwind;
div(phi,alpha) Gauss limitedLimitedLinear 1.0 -0.00001 1.00001;
div(phic,alpha) Gauss interfaceCompression; //upwind;
div(phi,alpha) Gauss limitedLimitedLinear 1 -1e-05 1.00001;
div(phic,alpha) Gauss interfaceCompression;
}
laplacianSchemes
@ -53,4 +54,5 @@ fluxRequired
default yes;
}
// ************************************************************************* //

View File

@ -2,7 +2,7 @@
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.5 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
@ -10,83 +10,92 @@ FoamFile
version 2.0;
format ascii;
class dictionary;
location "system";
object fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
solvers
{
pcorr PCG
pcorr
{
preconditioner GAMG
solver PCG;
preconditioner
{
tolerance 1e-5;
relTol 0;
smoother GaussSeidel;
nPreSweeps 0;
nPostSweeps 2;
nBottomSweeps 2;
preconditioner GAMG;
tolerance 1e-05;
relTol 0;
smoother GaussSeidel;
nPreSweeps 0;
nPostSweeps 2;
nBottomSweeps 2;
cacheAgglomeration off;
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 2;
};
agglomerator faceAreaPair;
mergeLevels 2;
}
tolerance 1e-5;
relTol 0;
maxIter 100;
};
tolerance 1e-05;
relTol 0;
maxIter 100;
}
pd GAMG
pd
{
tolerance 1e-7;
relTol 0.05;
smoother GaussSeidel;
nPreSweeps 0;
nPostSweeps 2;
nFinestSweeps 2;
solver GAMG;
tolerance 1e-07;
relTol 0.05;
smoother GaussSeidel;
nPreSweeps 0;
nPostSweeps 2;
nFinestSweeps 2;
cacheAgglomeration on;
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
};
agglomerator faceAreaPair;
mergeLevels 1;
}
pdFinal PCG
pdFinal
{
preconditioner GAMG
solver PCG;
preconditioner
{
tolerance 1e-7;
relTol 0;
nVcycles 2;
smoother GaussSeidel;
nPreSweeps 0;
nPostSweeps 2;
nFinestSweeps 2;
preconditioner GAMG;
tolerance 1e-07;
relTol 0;
nVcycles 2;
smoother GaussSeidel;
nPreSweeps 0;
nPostSweeps 2;
nFinestSweeps 2;
cacheAgglomeration on;
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
};
agglomerator faceAreaPair;
mergeLevels 1;
}
tolerance 1e-7;
relTol 0;
maxIter 20;
};
tolerance 1e-07;
relTol 0;
maxIter 20;
}
alpha smoothSolver
U
{
smoother GaussSeidel;
tolerance 1e-8;
relTol 0;
nSweeps 1;
};
solver smoothSolver;
smoother GaussSeidel;
tolerance 1e-08;
relTol 0;
nSweeps 1;
}
alpha
{
solver smoothSolver;
smoother GaussSeidel;
tolerance 1e-08;
relTol 0;
nSweeps 1;
}
}
PISO
@ -99,4 +108,5 @@ PISO
cAlpha 4;
}
// ************************************************************************* //

View File

@ -2,7 +2,7 @@
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.5 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
@ -10,6 +10,7 @@ FoamFile
version 2.0;
format ascii;
class dictionary;
location "system";
object setFieldsDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -20,15 +21,14 @@ defaultFieldValues
volScalarFieldValue alphaWater 0
volScalarFieldValue alphaOil 0
volScalarFieldValue alphaMercury 0
volVectorFieldValue U (0 0 0)
volVectorFieldValue U ( 0 0 0 )
);
regions
(
boxToCell
{
box (0 0 -1) (0.1461 0.292 1);
box ( 0 0 -1 ) ( 0.1461 0.292 1 );
fieldValues
(
volScalarFieldValue alphaWater 1
@ -37,11 +37,9 @@ regions
volScalarFieldValue alphaAir 0
);
}
boxToCell
{
box (0.1461 0 -1) (0.2922 0.292 1);
box ( 0.1461 0 -1 ) ( 0.2922 0.292 1 );
fieldValues
(
volScalarFieldValue alphaWater 0
@ -50,11 +48,9 @@ regions
volScalarFieldValue alphaAir 0
);
}
boxToCell
{
box (0 0 -1) (0.1461 0.1 1);
box ( 0 0 -1 ) ( 0.1461 0.1 1 );
fieldValues
(
volScalarFieldValue alphaWater 0
@ -65,4 +61,5 @@ regions
}
);
// ************************************************************************* //