chtMultiRegionFoam tutorials: Updated to provide hRhoThermo
[freefoam.git] / tutorials / heatTransfer / chtMultiRegionFoam / multiRegionHeater / system / topAir / fvSolution
blob7b3e1c86f7ed4bae621a83f8f6121a9a89db1dc2
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.7.1                                 |
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     p_rghFinal
42     {
43         solver           GAMG;
44         tolerance        1e-7;
45         relTol           0;
47         smoother         GaussSeidel;
49         cacheAgglomeration true;
50         nCellsInCoarsestLevel 10;
51         agglomerator     faceAreaPair;
52         mergeLevels      1;
53     }
55     U
56     {
57         solver           PBiCG;
58         preconditioner   DILU;
59         tolerance        1e-7;
60         relTol           0;
61     }
63     h
64     {
65         solver           PBiCG;
66         preconditioner   DILU;
67         tolerance        1e-7;
68         relTol           0.1;
69     }
71     hFinal
72     {
73         solver           PBiCG;
74         preconditioner   DILU;
75         tolerance        1e-7;
76         relTol           0;
77     }
79     k
80     {
81         solver           PBiCG;
82         preconditioner   DILU;
83         tolerance        1e-7;
84         relTol           0;
85     }
87     epsilon
88     {
89         solver           PBiCG;
90         preconditioner   DILU;
91         tolerance        1e-7;
92         relTol           0;
93     }
95     R
96     {
97         solver           PBiCG;
98         preconditioner   DILU;
99         tolerance        1e-7;
100         relTol           0;
101     }
104 PIMPLE
106     nCorrectors         2;
107     nNonOrthogonalCorrectors 0;
110 relaxationFactors
112     h               1;
113     U               1;
116 // ************************************************************************* //