Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / incompressible / simpleFoam / pitzDaily / system / fvSolution
blobb125baf1108e0fcb5e9bc42e7aa29bb0eed8ffb2
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     U
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     R
48     {
49         solver           PBiCG;
50         preconditioner   DILU;
51         tolerance        1e-05;
52         relTol           0.1;
53     }
54     nuTilda
55     {
56         solver           PBiCG;
57         preconditioner   DILU;
58         tolerance        1e-05;
59         relTol           0.1;
60     }
63 SIMPLE
65     nNonOrthogonalCorrectors 0;
67     convergence          1e-4;
70 relaxationFactors
72     p               0.3;
73     U               0.7;
74     k               0.7;
75     epsilon         0.7;
76     R               0.7;
77     nuTilda         0.7;
80 // ************************************************************************* //