Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / multiphase / cavitatingFoam / ras / throttle / system / fvSolution
blob3fd0779650e757246999b4b68e976168e600b6d6
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.2                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.org         |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      fvSolution;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 solvers
19     omega
20     {
21         solver           PBiCG;
22         preconditioner   DILU;
23         tolerance        1e-08;
24         relTol           0;
25     };
27     k
28     {
29         solver           PBiCG;
30         preconditioner   DILU;
31         tolerance        1e-08;
32         relTol           0;
33     };
35     rho
36     {
37         solver           PBiCG;
38         preconditioner   DILU;
39         tolerance        1e-08;
40         relTol           0;
41     };
43     U
44     {
45         solver           PBiCG;
46         preconditioner   DILU;
47         tolerance        1e-08;
48         relTol           0;
49     };
51     p
52     {
53         solver           GAMG;
54         tolerance        1e-8;
55         relTol           0;
57         smoother         GaussSeidel;
58         nPreSweeps       0;
59         nPostSweeps      2;
61         cacheAgglomeration true;
63         nCellsInCoarsestLevel 10;
64         agglomerator     faceAreaPair;
65         mergeLevels      1;
66     };
68     pFinal
69     {
70         solver           GAMG;
71         tolerance        1e-8;
72         relTol           0;
74         smoother         GaussSeidel;
75         nPreSweeps       0;
76         nPostSweeps      2;
78         cacheAgglomeration true;
80         nCellsInCoarsestLevel 10;
81         agglomerator     faceAreaPair;
82         mergeLevels      1;
83     };
86 PISO
88     nCorrectors                2;
89     nNonOrthogonalCorrectors   1;
91 //    removeSwirl                2;
94 SIMPLE
97 // ************************************************************************* //