Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / chtMultiRegionSimpleFoam / multiRegionHeaterRadiation / system / bottomAir / fvSolution
blobabe773ef45e258f7fb426608b78aa3cc99e01907
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      fvSolution;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 solvers
19     rho
20     {
21         solver          PCG
22         preconditioner  DIC;
23         tolerance       1e-7;
24         relTol          0;
25     }
27     p_rgh
28     {
29         solver           GAMG;
30         tolerance        1e-7;
31         relTol           0.01;
33         smoother         GaussSeidel;
35         cacheAgglomeration true;
36         nCellsInCoarsestLevel 10;
37         agglomerator     faceAreaPair;
38         mergeLevels      1;
39     }
41     "(U|h|k|epsilon|G|Ii)"
42     {
43         solver           PBiCG;
44         preconditioner   DILU;
45         tolerance        1e-7;
46         relTol           0.1;
47     }
49     G
50     {
51         $p_rgh;
52         tolerance       1e-05;
53         relTol          0.1;
54     }
57 SIMPLE
59     momentumPredictor on;
60     nNonOrthogonalCorrectors 0;
61     pRefCell        0;
62     pRefValue       100000;
63     rhoMin          rhoMin [1 -3 0 0 0] 0.2;
64     rhoMax          rhoMax [1 -3 0 0 0] 2;
67 relaxationFactors
69     rho             1.0;
70     p_rgh           0.7;
71     U               0.3;
72     h               0.7;
73     "(k|epsilon|omega)" 0.7;
74     G               0.7;
75     "ILambda.*"     0.7;
76     Qr              0.7;
79 // ************************************************************************* //