initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / tutorials / rhoPorousSimpleFoam / angledDuctImplicit / system / fvSolution
blob4a459767507a99fe629411e9834e513d57a5890b
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.5                                   |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      fvSolution;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 solvers
19     p GAMG
20     {
21         tolerance        1e-8;
22         relTol           0.05;
24         smoother         GaussSeidel;
26         cacheAgglomeration off;
28         nCellsInCoarsestLevel 20;
29         agglomerator     faceAreaPair;
30         mergeLevels      1;
31     };
33     h PBiCG
34     {
35         preconditioner   DILU;
36         tolerance        1e-6;
37         relTol           0.1;
38     };
40     k smoothSolver
41     {
42         smoother         GaussSeidel;
43         nSweeps          2;
44         tolerance        1e-7;
45         relTol           0.1;
46     };
48     epsilon smoothSolver
49     {
50         smoother         GaussSeidel;
51         nSweeps          2;
52         tolerance        1e-7;
53         relTol           0.1;
54     };
57 SIMPLE
59     nUCorrectors                 2;
60     nNonOrthogonalCorrectors     0;
61     pMin                         pMin   [1 -1 -2 0 0 0 0] 100;
64 relaxationFactors
66     p           0.3;
67     rho         1;
68     U           0.7;
69     k           0.9;
70     epsilon     0.9;
71     h           0.9;
74 // ************************************************************************* //