initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / heatTransfer / buoyantSimpleRadiationFoam / hotRadiationRoomFvDOM / system / fvSolution
blob14ade5412348534fe122968feca7b0e90c4842b5
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     location    "system";
14     object      fvSolution;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 solvers
20     p
21     {
22         solver          GAMG;
23         tolerance       1e-06;
24         relTol          0.01;
25         smoother        GaussSeidel;
26         cacheAgglomeration true;
27         nCellsInCoarsestLevel 10;
28         agglomerator    faceAreaPair;
29         mergeLevels     1;
30     }
32     U
33     {
34         solver          PBiCG;
35         preconditioner  DILU;
36         tolerance       1e-05;
37         relTol          0.1;
38     }
40     h
41     {
42         solver          PBiCG;
43         preconditioner  DILU;
44         tolerance       1e-05;
45         relTol          0.1;
46     }
48     k
49     {
50         solver          PBiCG;
51         preconditioner  DILU;
52         tolerance       1e-05;
53         relTol          0.1;
54     }
56     epsilon
57     {
58         solver          PBiCG;
59         preconditioner  DILU;
60         tolerance       1e-05;
61         relTol          0.1;
62     }
64     Ii
65     {
66         solver          PBiCG;
67         preconditioner  DILU;
68         tolerance       1e-05;
69         relTol          0.1;
70     }
73 SIMPLE
75     nNonOrthogonalCorrectors 0;
76     pRefCell       0;
77     pRefValue      0;
80 relaxationFactors
82     rho             1.0;
83     p               0.3;
84     U               0.7;
85     h               0.7;
86     k               0.7;
87     epsilon         0.7;
88     "ILambda.*"     0.7;
92 // ************************************************************************* //