Forward compatibility: flex
[foam-extend-3.2.git] / tutorials / incompressible / simpleFoam / pitzDaily3Blocks / fvSolution
blob95bc19b8aff2d3e6bd6f137b2c251c59d986d221
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 PCG
20     {
21         preconditioner
22         {
23             type         DIC;
24         }
26         tolerance        1e-06;
27         relTol           0.01;
28         minIter          0;
29         maxIter          200;
30     };
32     U PBiCG
33     {
34         preconditioner
35         {
36             type         DILU;
37         }
39         tolerance        1e-05;
40         relTol           0.1;
41         minIter          0;
42         maxIter          200;
43     };
45     k PBiCG
46     {
47         preconditioner
48         {
49             type         DILU;
50         }
52         tolerance        1e-05;
53         relTol           0.1;
54         minIter          0;
55         maxIter          200;
56     };
58     epsilon PBiCG
59     {
60         preconditioner
61         {
62             type         DILU;
63         }
65         tolerance        1e-05;
66         relTol           0.1;
67         minIter          0;
68         maxIter          200;
69     };
71     R PBiCG
72     {
73         preconditioner
74         {
75             type         DILU;
76         }
78         tolerance        1e-05;
79         relTol           0.1;
80         minIter          0;
81         maxIter          200;
82     };
84     nuTilda PBiCG
85     {
86         preconditioner
87         {
88             type         DILU;
89         }
91         tolerance        1e-05;
92         relTol           0.1;
93         minIter          0;
94         maxIter          200;
95     };
98 SIMPLE
100     nNonOrthogonalCorrectors 0;
103 relaxationFactors
105     p               0.3;
106     U               0.7;
107     k               0.7;
108     epsilon         0.7;
109     R               0.7;
110     nuTilda         0.7;
113 // ************************************************************************* //