Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / buoyantPimpleFoam / hotRoom / system / fvSolution
blob55ae7ddfbf1613272854a946019013a200ae1f51
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.com                      |
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     "rho.*"
21     {
22         solver          PCG;
23         preconditioner  DIC;
24         tolerance       0;
25         relTol          0;
26     }
28     p_rgh
29     {
30         solver          PCG;
31         preconditioner  DIC;
32         tolerance       1e-8;
33         relTol          0.01;
34     }
36     p_rghFinal
37     {
38         $p_rgh;
39         relTol          0;
40     }
42     "(U|h|k|epsilon|R)"
43     {
44         solver          PBiCG;
45         preconditioner  DILU;
46         tolerance       1e-6;
47         relTol          0.1;
48     }
50     "(U|h|k|epsilon|R)Final"
51     {
52         $U;
53         relTol          0;
54     }
57 PIMPLE
59     momentumPredictor yes;
60     nOuterCorrectors 1;
61     nCorrectors     2;
62     nNonOrthogonalCorrectors 0;
66 // ************************************************************************* //