Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / immersedBoundary / pitzDailyLaminarIcoIbFoam / system / fvSolution
blob1cca3d46a005730fc1428612342f8372fa7a08c7
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 //     p
20 //     {
21 //         solver           CG;
22 //         preconditioner   Cholesky;
24 //         minIter          1;
25 //         maxIter          1000;
26 //         tolerance        1e-06;
27 //         relTol           0;
28 //     }
30 //     p
31 //     {
32 //         solver           smoothSolver;
33 //         smoother         GaussSeidel;
34 //         nSweeps          10;
36 //         minIter          1;
37 //         maxIter          1000;
38 //         tolerance        1e-06;
39 //         relTol           0;
40 //     }
42     p
43     {
44         solver          GAMG;
45         tolerance       1e-07;
46         relTol          0;
47         minIter 1;
48         smoother        GaussSeidel;
49         cacheAgglomeration true;
50         nCellsInCoarsestLevel 10;
51         agglomerator    faceAreaPair;
52         mergeLevels     1;
53     }
55     U
56     {
57         solver           BiCGStab;
58         preconditioner   ILU0;
60 //         solver           CG;
61 //         preconditioner   Cholesky;
63         minIter          1;
64         maxIter          1000;
65         tolerance        1e-06;
66         relTol           0;
67     };
70 SIMPLE
72     nNonOrthogonalCorrectors 4;
74     pRefPoint (0.1 0 0);
75     pRefValue 0;
78 PIMPLE
80     nOuterCorrectors 1;
81     nCorrectors     4;
82     nNonOrthogonalCorrectors 0;
84     pRefPoint (0.1 0 0);
85     pRefValue 0;
88 // ************************************************************************* //