ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / chtMultiRegionFoam / multiRegionHeater / system / topAir / fvSolution
blobb9c665240bb6209388c8ce082cda6d271e930735
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.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-7;
24         relTol          0.1;
25     }
27     rhoFinal
28     {
29         $rho;
30         tolerance       1e-7;
31         relTol          0;
32     }
34     p_rgh
35     {
36         solver           GAMG;
37         tolerance        1e-7;
38         relTol           0.01;
40         smoother         GaussSeidel;
42         cacheAgglomeration true;
43         nCellsInCoarsestLevel 10;
44         agglomerator     faceAreaPair;
45         mergeLevels      1;
47         maxIter          100;
48     }
50     p_rghFinal
51     {
52         $p_rgh;
53         tolerance        1e-7;
54         relTol           0;
55     }
57     "(U|h|k|epsilon|R)"
58     {
59         solver           PBiCG;
60         preconditioner   DILU;
61         tolerance        1e-7;
62         relTol           0.1;
63     }
65     "(U|h|k|epsilon|R)Final"
66     {
67         $U;
68         tolerance        1e-7;
69         relTol           0;
70     }
73 PIMPLE
75     momentumPredictor on;
76     nCorrectors      2;
77     nNonOrthogonalCorrectors 0;
80 relaxationFactors
82     "h.*"           1;
83     "U.*"           1;
86 // ************************************************************************* //