Transferred copyright to the OpenFOAM Foundation
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / buoyantSimpleFoam / buoyantCavity / system / fvSolution
blobadae94c0517d3241e5ea80a2a015cbe54a063ee2
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     location    "system";
14     object      fvSolution;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 solvers
20     p_rgh
21     {
22         solver           GAMG;
23         tolerance        1e-7;
24         relTol           0.01;
26         smoother         DICGaussSeidel;
28         cacheAgglomeration true;
29         nCellsInCoarsestLevel 10;
30         agglomerator     faceAreaPair;
31         mergeLevels      1;
32     }
34     "(U|h|k|epsilon|omega)"
35     {
36         solver          PBiCG;
37         preconditioner  DILU;
38         tolerance       1e-8;
39         relTol          0.1;
40     }
43 SIMPLE
45     momentumPredictor yes;
46     nNonOrthogonalCorrectors 0;
47     pRefCell        0;
48     pRefValue       0;
50     residualControl
51     {
52         p_rgh           1e-2;
53         U               1e-3;
54         h               1e-3;
56         // possibly check turbulence fields
57         "(k|epsilon|omega)" 1e-3;
58     }
61 relaxationFactors
63     rho             1.0;
64     p_rgh           0.7;
65     U               0.3;
66     h               0.3;
67     "(k|epsilon|omega)" 0.7;
71 // ************************************************************************* //