STYLE: miss-aligned Headers
[foam-extend-3.2.git] / tutorials / equationReader / equationReaderDemo / pitzDaily / system / fvSolution
blobb0775a8cc515752f12844ab52b2063403792a6b8
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.0                                |
5 |   \\  /    A nd           | Web:         http://www.extend-project.de       |
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;
68 relaxationFactors
70     p               0.3;
71     U               0.7;
72     k               0.7;
73     epsilon         0.7;
74     R               0.7;
75     nuTilda         0.7;
78 // ************************************************************************* //