Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / heatTransfer / buoyantSimpleFoam / hotRoom / system / fvSolution
blobee2595c6f88497bc2e706b3a92002061a264128a
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-08;
24         relTol           0;
25     };
26     U
27     {
28         solver           PBiCG;
29         preconditioner   DILU;
30         tolerance        1e-05;
31         relTol           0;
32     };
33     h
34     {
35         solver           PBiCG;
36         preconditioner   DILU;
37         tolerance        1e-05;
38         relTol           0;
39     };
40     k
41     {
42         solver           PBiCG;
43         preconditioner   DILU;
44         tolerance        1e-05;
45         relTol           0;
46     };
47     epsilon
48     {
49         solver           PBiCG;
50         preconditioner   DILU;
51         tolerance        1e-05;
52         relTol           0;
53     };
54     R
55     {
56         solver           PBiCG;
57         preconditioner   DILU;
58         tolerance        1e-05;
59         relTol           0;
60     };
63 SIMPLE
65     nNonOrthogonalCorrectors 0;
66     pRefCell         0;
67     pRefValue        0;
70 relaxationFactors
72     rho             1.0;
73     p               0.3;
74     U               0.7;
75     h               0.7;
76     k               0.7;
77     epsilon         0.7;
78     R               0.7;
81 // ************************************************************************* //