Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / incompressible / simpleFoam / pitzDaily3Blocks / system / fvSolution
blobcb8f48bb7bb4e306598ba29189d97a083a048ba0
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;
24         minIter          0;
25         maxIter          2000;
26         tolerance        1e-06;
27         relTol           0.01;
28     };
29     U
30     {
31         solver           PBiCG;
32         preconditioner   DILU;
34         minIter          0;
35         maxIter          500;
36         tolerance        1e-05;
37         relTol           0.1;
38     };
39     k
40     {
41         solver           PBiCG;
42         preconditioner   DILU;
44         minIter          0;
45         maxIter          500;
46         tolerance        1e-05;
47         relTol           0.1;
48     };
49     epsilon PBiCG
50     {
51         solver           PBiCG;
52         preconditioner   DILU;
54         minIter          0;
55         maxIter          500;
56         tolerance        1e-05;
57         relTol           0.1;
58     };
59     R PBiCG
60     {
61         solver           PBiCG;
62         preconditioner   DILU;
64         minIter          0;
65         maxIter          500;
66         tolerance        1e-05;
67         relTol           0.1;
68     };
69     nuTilda PBiCG
70     {
71         solver           PBiCG;
72         preconditioner   DILU;
74         minIter          0;
75         maxIter          500;
76         tolerance        1e-05;
77         relTol           0.1;
78     };
81 SIMPLE
83     nNonOrthogonalCorrectors 0;
86 relaxationFactors
88     p               0.3;
89     U               0.7;
90     k               0.7;
91     epsilon         0.7;
92     R               0.7;
93     nuTilda         0.7;
96 // ************************************************************************* //