Merge branch 'master' of github.com:OpenFOAM/OpenFOAM-2.0.x
[OpenFOAM-2.0.x.git] / tutorials / multiphase / twoLiquidMixingFoam / lockExchange / system / fvSolution
blobf3977208fd260b9922fb4f75286cbe16a8cb12ce
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.x                                 |
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     "alpha1.*"
21     {
22         solver          smoothSolver;
23         smoother        GaussSeidel;
24         tolerance       1e-7;
25         relTol          0;
26         nSweeps         1;
27     }
29     p_rgh
30     {
31         solver          GAMG;
32         tolerance       1e-7;
33         relTol          0.01;
34         smoother        GaussSeidel;
35         cacheAgglomeration true;
36         nCellsInCoarsestLevel 10;
37         agglomerator    faceAreaPair;
38         mergeLevels     1;
39     }
41     p_rghFinal
42     {
43         $p_rgh;
44         relTol          0;
45     }
47     U
48     {
49         solver          smoothSolver;
50         smoother        GaussSeidel;
51         tolerance       1e-7;
52         relTol          0.1;
53         nSweeps         1;
54     }
56     UFinal
57     {
58         $U;
59         relTol          0;
60     }
63 PIMPLE
65     momentumPredictor   yes;
66     nOuterCorrectors    1;
67     nCorrectors         2;
68     nNonOrthogonalCorrectors 0;
69     pRefValue           0;
70     pRefPoint           (0.1 0.1 1);
74 // ************************************************************************* //