initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / multiphase / multiphaseInterFoam / laminar / damBreak4phaseFine / system / fvSolution
blob9f6930eccf0fce8fb8110fdfea1af1e006dda2ce
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     pcorr
21     {
22         solver          PCG;
23         preconditioner
24         {
25             preconditioner  GAMG;
26             tolerance       1e-05;
27             relTol          0;
28             smoother        GaussSeidel;
29             nPreSweeps      0;
30             nPostSweeps     2;
31             nBottomSweeps   2;
32             cacheAgglomeration off;
33             nCellsInCoarsestLevel 10;
34             agglomerator    faceAreaPair;
35             mergeLevels     2;
36         }
38         tolerance       1e-05;
39         relTol          0;
40         maxIter         100;
41     }
43     p
44     {
45         solver          GAMG;
46         tolerance       1e-07;
47         relTol          0.05;
48         smoother        GaussSeidel;
49         nPreSweeps      0;
50         nPostSweeps     2;
51         nFinestSweeps   2;
52         cacheAgglomeration on;
53         nCellsInCoarsestLevel 10;
54         agglomerator    faceAreaPair;
55         mergeLevels     1;
56     }
58     pFinal
59     {
60         solver          PCG;
61         preconditioner
62         {
63             preconditioner  GAMG;
64             tolerance       1e-07;
65             relTol          0;
66             nVcycles        2;
67             smoother        GaussSeidel;
68             nPreSweeps      0;
69             nPostSweeps     2;
70             nFinestSweeps   2;
71             cacheAgglomeration on;
72             nCellsInCoarsestLevel 10;
73             agglomerator    faceAreaPair;
74             mergeLevels     1;
75         }
77         tolerance       1e-07;
78         relTol          0;
79         maxIter         20;
80     }
82     U
83     {
84         solver          smoothSolver;
85         smoother        GaussSeidel;
86         tolerance       1e-08;
87         relTol          0;
88         nSweeps         1;
89     }
91     alpha
92     {
93         solver          smoothSolver;
94         smoother        GaussSeidel;
95         tolerance       1e-08;
96         relTol          0;
97         nSweeps         1;
98     }
101 PISO
103     nCorrectors     4;
104     nNonOrthogonalCorrectors 0;
105     nAlphaCorr      4;
106     nAlphaSubCycles 4;
107     cycleAlpha      yes;
108     cAlpha          4;
112 // ************************************************************************* //