initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / multiphase / twoPhaseEulerFoam / bubbleColumn / system / fvSolution
blobefb0cb6b6a79f4ea8e89087e77c4b32c43dbc3b3
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     location    "system";
14     object      fvSolution;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 solvers
20     p
21     {
22         solver          GAMG;
23         tolerance       1e-08;
24         relTol          0;
25         smoother        DIC;
26         nPreSweeps      0;
27         nPostSweeps     2;
28         nFinestSweeps   2;
29         cacheAgglomeration true;
30         nCellsInCoarsestLevel 10;
31         agglomerator    faceAreaPair;
32         mergeLevels     1;
33     }
35     Ua
36     {
37         solver          PBiCG;
38         preconditioner  DILU;
39         tolerance       1e-05;
40         relTol          0;
41     }
43     Ub
44     {
45         solver          PBiCG;
46         preconditioner  DILU;
47         tolerance       1e-05;
48         relTol          0;
49     }
51     alpha
52     {
53         solver          PBiCG;
54         preconditioner  DILU;
55         tolerance       1e-10;
56         relTol          0;
57     }
59     beta
60     {
61         solver          PBiCG;
62         preconditioner  DILU;
63         tolerance       1e-10;
64         relTol          0;
65     }
67     Theta
68     {
69         solver          PBiCG;
70         preconditioner  DILU;
71         tolerance       1e-05;
72         relTol          0;
73     }
75     k
76     {
77         solver          PBiCG;
78         preconditioner  DILU;
79         tolerance       1e-05;
80         relTol          0;
81     }
83     epsilon
84     {
85         solver          PBiCG;
86         preconditioner  DILU;
87         tolerance       1e-05;
88         relTol          0;
89     }
92 PISO
94     nCorrectors     2;
95     nNonOrthogonalCorrectors 0;
96     nAlphaCorr      2;
97     correctAlpha    no;
98     pRefCell        0;
99     pRefValue       0;
103 // ************************************************************************* //