chtMultiRegionSimpleFoam: new solver, steady-state version of chtMultiRegionFoam
[OpenFOAM-1.6.x.git] / tutorials / heatTransfer / chtMultiRegionSimpleFoam / multiRegionHeater / system / topAir / fvSolution
blobe620dcb6521dcf5731286f837d1ae4a573955872
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     }
27     p
28     {
29         solver           GAMG;
30         tolerance        1e-8;
31         relTol           0.01;
33         smoother         GaussSeidel;
35         cacheAgglomeration true;
36         nCellsInCoarsestLevel 10;
37         agglomerator     faceAreaPair;
38         mergeLevels      1;
39     }
41     "(U|h|k|epsilon)"
42     {
43         solver           PBiCG;
44         preconditioner   DILU;
45         tolerance        1e-08;
46         relTol           0.1;
47     }
50 SIMPLE
52     nNonOrthogonalCorrectors 0;
53     pRefCell                0;
54     pRefValue               100000;
57 relaxationFactors
59     rho         1;
60     p           0.7;
61     U           0.3;
62     h           0.7;
63     nuTilda     0.7;
64     k           0.7;
65     epsilon     0.7;
66     omega       0.7;
67     "ILambda.*" 0.7;
70 // ************************************************************************* //