Upgrade case file headers
[foam-extend-3.2.git] / tutorials / heatTransfer / buoyantSimpleRadiationFoam / hotRadiationRoom / system / fvSolution
blobd6d9cf3fc9298cfd40ec1b9297e0317a15238d22
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   DIC;
22         tolerance        1e-06;
23         relTol           0.01;
24     };
25     U PBiCG
26     {
27         preconditioner   DILU;
28         tolerance        1e-05;
29         relTol           0.1;
30     };
31     h PBiCG
32     {
33         preconditioner   DILU;
34         tolerance        1e-05;
35         relTol           0.1;
36     };
37     k PBiCG
38     {
39         preconditioner   DILU;
40         tolerance        1e-05;
41         relTol           0.1;
42     };
43     epsilon PBiCG
44     {
45         preconditioner   DILU;
46         tolerance        1e-05;
47         relTol           0.1;
48     };
49     G PCG
50     {
51         preconditioner   DIC;
52         tolerance        1e-05;
53         relTol           0.1;
54     };
57 SIMPLE
59     nNonOrthogonalCorrectors 0;
60     pRefCell         0;
61     pRefValue        0;
64 relaxationFactors
66     rho             1.0;
67     p               0.3;
68     U               0.7;
69     h               0.7;
70     k               0.7;
71     epsilon         0.7;
72     G               0.7;
75 // ************************************************************************* //