From b68ffdc720fd7b8ae1517e99a94e0ce1ed089b4b Mon Sep 17 00:00:00 2001 From: mattijs Date: Wed, 14 Jan 2009 11:07:36 +0000 Subject: [PATCH] dummy files --- .../multiRegionHeater/system/fvSchemes | 78 ++++++++++++++ .../multiRegionHeater/system/fvSolution | 118 +++++++++++++++++++++ 2 files changed, 196 insertions(+) create mode 100644 tutorials/chtMultiRegionFoam/multiRegionHeater/system/fvSchemes create mode 100644 tutorials/chtMultiRegionFoam/multiRegionHeater/system/fvSolution diff --git a/tutorials/chtMultiRegionFoam/multiRegionHeater/system/fvSchemes b/tutorials/chtMultiRegionFoam/multiRegionHeater/system/fvSchemes new file mode 100644 index 0000000..7330929 --- /dev/null +++ b/tutorials/chtMultiRegionFoam/multiRegionHeater/system/fvSchemes @@ -0,0 +1,78 @@ +/*---------------------------------------------------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: 1.4 | +| \\ / A nd | Web: http://www.openfoam.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ + +FoamFile +{ + version 2.0; + format ascii; + + root ""; + case ""; + instance ""; + local ""; + + class dictionary; + object fvSchemes; +} + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +ddtSchemes +{ + default Euler; + //default CoEuler phi rho 0.1; +} + +gradSchemes +{ + default Gauss linear; +// grad(U) cellLimited Gauss linear 1; +} + +divSchemes +{ + default none; + div(phi,U) Gauss upwind; + div(phiU,p) Gauss upwind; + div(phi,h) Gauss upwind; + div(phi,k) Gauss upwind; + div(phi,epsilon) Gauss upwind; + div(phi,R) Gauss upwind; + div(R) Gauss linear; + div((muEff*dev2(grad(U).T()))) Gauss linear; +} + +laplacianSchemes +{ + default none; + laplacian(muEff,U) Gauss linear limited 0.333; + laplacian((rho*(1|A(U))),pd) Gauss linear limited 0.333; + laplacian(alphaEff,h) Gauss linear limited 0.333; + laplacian(DkEff,k) Gauss linear limited 0.333; + laplacian(DepsilonEff,epsilon) Gauss linear limited 0.333; + laplacian(DREff,R) Gauss linear limited 0.333; +} + +interpolationSchemes +{ + default linear; +} + +snGradSchemes +{ + default limited 0.333; +} + +fluxRequired +{ + default no; + pd; +} + + +// ************************************************************************* // diff --git a/tutorials/chtMultiRegionFoam/multiRegionHeater/system/fvSolution b/tutorials/chtMultiRegionFoam/multiRegionHeater/system/fvSolution new file mode 100644 index 0000000..e82c183 --- /dev/null +++ b/tutorials/chtMultiRegionFoam/multiRegionHeater/system/fvSolution @@ -0,0 +1,118 @@ +/*---------------------------------------------------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: 1.4 | +| \\ / A nd | Web: http://www.openfoam.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ + +FoamFile +{ + version 2.0; + format ascii; + + root ""; + case ""; + instance ""; + local ""; + + class dictionary; + object fvSolution; +} + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +solvers +{ + rho PCG + { + preconditioner DIC; + tolerance 1e-6; + relTol 0; + }; +// pd PCG +// { +// preconditioner DIC; +// tolerance 1e-6; +// relTol 0.1; +// }; +// pdFinal PCG +// { +// preconditioner DIC; +// tolerance 1e-08; +// relTol 0; +// }; + pd GAMG + { + tolerance 1e-6; + relTol 0.1; + + smoother GaussSeidel; + + cacheAgglomeration true; + nCellsInCoarsestLevel 10; + agglomerator faceAreaPair; + mergeLevels 1; + }; + pdFinal GAMG + { + tolerance 1e-6; + relTol 0; + + smoother GaussSeidel; + + cacheAgglomeration true; + nCellsInCoarsestLevel 10; + agglomerator faceAreaPair; + mergeLevels 1; + }; + U PBiCG + { + preconditioner DILU; + tolerance 1e-08; + relTol 0; + }; + h PBiCG + { + preconditioner DILU; + tolerance 1e-06; + relTol 0; + }; + k PBiCG + { + preconditioner DILU; + tolerance 1e-06; + relTol 0; + }; + epsilon PBiCG + { + preconditioner DILU; + tolerance 1e-06; + relTol 0; + }; + R PBiCG + { + preconditioner DILU; + tolerance 1e-06; + relTol 0; + }; +} + +PISO +{ + momentumPredictor off; + nOuterCorrectors 1; + nCorrectors 2; + nNonOrthogonalCorrectors 1; + pdRefCell 0; + pdRefValue 0; +} + +//relaxationFactors +//{ +//// h 0.9; +// U 0.9; +//} + + +// ************************************************************************* // -- 2.11.4.GIT