Upgrade case file headers
[foam-extend-3.2.git] / tutorials / immersedBoundary / pitzDailyTurbulentSimpleIbFoam / system / fvSolution
blobfdee05d75e99f867af39b4ca7832b03604020693
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-08;
63         relTol           0;
64     }
66     k
67     {
68         solver           BiCGStab;
69         preconditioner   ILU0;
71         minIter          1;
72         maxIter          1000;
73         tolerance        1e-08;
74         relTol           0;
75     }
77     epsilon
78     {
79         solver           BiCGStab;
80         preconditioner   ILU0;
82         minIter          1;
83         maxIter          1000;
84         tolerance        1e-08;
85         relTol           0;
86     }
89 SIMPLE
91     nNonOrthogonalCorrectors 2;
93     pRefPoint (0.1 0 0);
94     pRefValue 0;
97 relaxationFactors
99     U          0.5;
100     p          0.2;
101     k          0.5;
102     epsilon    0.5;
105 // ************************************************************************* //