Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / incompressible / simpleSRFFoam / mixer / system / fvSolution
blobf60765a81a76dc040bf4b854e5c61b0159d1a3ad
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           PCG;
22         preconditioner   DIC;
23         tolerance        1e-06;
24         relTol           0.01;
25     };
26     Urel
27     {
28         solver           PBiCG;
29         preconditioner   DILU;
30         tolerance        1e-05;
31         relTol           0.1;
32     };
33     k
34     {
35         solver           PBiCG;
36         preconditioner   DILU;
37         tolerance        1e-05;
38         relTol           0.1;
39     };
40     epsilon
41     {
42         solver           PBiCG;
43         preconditioner   DILU;
44         tolerance        1e-05;
45         relTol           0.1;
46     };
47     omega
48     {
49         solver           PBiCG;
50         preconditioner   DILU;
51         tolerance        1e-05;
52         relTol           0.1;
53     };
54     R
55     {
56         solver           PBiCG;
57         preconditioner   DILU;
58         tolerance        1e-05;
59         relTol           0.1;
60     };
61     nuTilda
62     {
63         solver           PBiCG;
64         preconditioner   DILU;
65         tolerance        1e-05;
66         relTol           0.1;
67     };
70 SIMPLE
72     nNonOrthogonalCorrectors 0;
75 relaxationFactors
77     p               0.3;
78     Urel            0.7;
79     k               0.7;
80     epsilon         0.7;
81     omega           0.7;
82     R               0.7;
83     nuTilda         0.7;
86 // ************************************************************************* //