initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / heatTransfer / chtMultiRegionFoam / multiRegionHeater / system / topAir / fvSolution
blob3248e05562676ddb8c239be642dbc5906dd69d15
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
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-8;
24         relTol          0;
25     };
26     p
27     {
28         solver           GAMG;
29         tolerance        1e-8;
30         relTol           0.01;
32         smoother         GaussSeidel;
34         cacheAgglomeration true;
35         nCellsInCoarsestLevel 10;
36         agglomerator     faceAreaPair;
37         mergeLevels      1;
38     };
39     pFinal
40     {
41         solver           GAMG;
42         tolerance        1e-8;
43         relTol           0;
45         smoother         GaussSeidel;
47         cacheAgglomeration true;
48         nCellsInCoarsestLevel 10;
49         agglomerator     faceAreaPair;
50         mergeLevels      1;
51     };
52     U
53     {
54         solver           PBiCG;
55         preconditioner   DILU;
56         tolerance        1e-08;
57         relTol           0;
58     };
60     h
61     {
62         solver           PBiCG;
63         preconditioner   DILU;
64         tolerance        1e-08;
65         relTol           0.1;
66     };
67     hFinal
68     {
69         solver           PBiCG;
70         preconditioner   DILU;
71         tolerance        1e-08;
72         relTol           0;
73     };
75     k
76     {
77         solver           PBiCG;
78         preconditioner   DILU;
79         tolerance        1e-08;
80         relTol           0;
81     };
82     epsilon
83     {
84         solver           PBiCG;
85         preconditioner   DILU;
86         tolerance        1e-08;
87         relTol           0;
88     };
89     R
90     {
91         solver           PBiCG;
92         preconditioner   DILU;
93         tolerance        1e-08;
94         relTol           0;
95     };
98 PISO
100     momentumPredictor   off;
101     nOuterCorrectors     1;
102     nCorrectors     2;
103     nNonOrthogonalCorrectors 1;
104     pRefPoint       (-0.081 -0.0257 8.01);
105     pRefValue       1e5;
109 PIMPLE
111     momentumPredictor   on;
112     nCorrectors         2;
113     nNonOrthogonalCorrectors 0;
117 relaxationFactors
119 //    h               0.9;
120 //    U               0.9;
123 // ************************************************************************* //