BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / buoyantBoussinesqPimpleFoam / hotRoom / system / fvSolution
blobd8e7cdd6d0c941fbd599aae94fdf358239194ca2
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          PCG;
23         preconditioner  DIC;
24         tolerance       1e-8;
25         relTol          0.01;
26     }
28     p_rghFinal
29     {
30         $p_rgh;
31         relTol          0;
32     }
34     "(U|T|k|epsilon|R)"
35     {
36         solver          PBiCG;
37         preconditioner  DILU;
38         tolerance       1e-6;
39         relTol          0.1;
40     }
42     "(U|T|k|epsilon|R)Final"
43     {
44         $U;
45         relTol          0;
46     }
49 PIMPLE
51     momentumPredictor no;
52     nOuterCorrectors 1;
53     nCorrectors     2;
54     nNonOrthogonalCorrectors 0;
55     pRefCell        0;
56     pRefValue       0;
59 relaxationFactors
61     "(U|T|k|epsilon|R)" 1;
62     "(U|T|k|epsilon|R)Final" 1;
65 // ************************************************************************* //