Upgrade case file headers
[foam-extend-3.2.git] / tutorials / heatTransfer / chtMultiRegionFoam / multiRegionHeater / system / fvSolution
blob711641415b6caeeab8994f1028138ed522ac6c49
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.2                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.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-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     k
67     {
68         solver           PBiCG;
69         preconditioner   DILU;
70         tolerance        1e-06;
71         relTol           0;
72     };
73     epsilon
74     {
75         solver           PBiCG;
76         preconditioner   DILU;
77         tolerance        1e-06;
78         relTol           0;
79     };
80     R
81     {
82         solver           PBiCG;
83         preconditioner   DILU;
84         tolerance        1e-06;
85         relTol           0;
86     };
89 PIMPLE
91     momentumPredictor        off;
92     nOuterCorrectors         1;
93     nCorrectors              2;
94     nNonOrthogonalCorrectors 1;
95     pRefCell                 0;
96     pRefValue                0;
99 // ************************************************************************* //