Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / immersedBoundary / backwardStepShortTurbulentSimpleIbFoam / system / fvSolution
blobfea53b06a2f6f5f0ecf1bb4add8f292999abf04e
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.01;
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.01;
40 //     }
42     p
43     {
44         solver          GAMG;
45         tolerance       1e-06;
46         relTol          0.05;
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         minIter          1;
61         maxIter          1000;
62         tolerance        1e-06;
63         relTol           0;
64     }
66     k
67     {
68         solver           BiCGStab;
69         preconditioner   ILU0;
71         minIter          1;
72         maxIter          1000;
73         tolerance        1e-06;
74         relTol           0;
75     }
77     epsilon
78     {
79         solver           BiCGStab;
80         preconditioner   ILU0;
82         minIter          1;
83         maxIter          1000;
84         tolerance        1e-06;
85         relTol           0;
86     }
89 SIMPLE
91     nNonOrthogonalCorrectors 0;
93     pRefPoint (0.199 0.0299 0.001);
94     pRefValue 0;
97 relaxationFactors
99     U          0.7;
100     p          0.3;
101     k          0.6;
102     epsilon    0.6;
105 // ************************************************************************* //