fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / heatTransfer / chtMultiRegionFoam / multiRegionHeater / system / bottomAir / fvSolution
blob386935e39b1320c341357c0539384b2ae1c3b60a
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM Extend Project: Open Source CFD        |
4 |  \\    /   O peration     | Version:  1.6-ext                               |
5 |   \\  /    A nd           | Web:      www.extend-project.de                 |
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-6;
24         relTol           0;
25     };
26     p
27     {
28         solver           GAMG;
29         tolerance        1e-6;
30         relTol           0.1;
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-6;
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     };
59     h
60     {
61         solver           PBiCG;
62         preconditioner   DILU;
63         tolerance        1e-06;
64         relTol           0;
65     };
66     hFinal
67     {
68         solver           PBiCG;
69         preconditioner   DILU;
70         tolerance        1e-07;
71         relTol           0;
72     }
73     k
74     {
75         solver           PBiCG;
76         preconditioner   DILU;
77         tolerance        1e-06;
78         relTol           0;
79     };
80     epsilon
81     {
82         solver           PBiCG;
83         preconditioner   DILU;
84         tolerance        1e-06;
85         relTol           0;
86     };
87     R
88     {
89         solver           PBiCG;
90         preconditioner   DILU;
91         tolerance        1e-06;
92         relTol           0;
93     };
96 PIMPLE
98     momentumPredictor        off;
99     nOuterCorrectors         1;
100     nCorrectors              2;
101     nNonOrthogonalCorrectors 1;
102     pRefCell                 0;
103     pRefValue                0;
106 // ************************************************************************* //