BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / buoyantSimpleRadiationFoam / hotRadiationRoom / system / fvSolution
blob16477e55ad584777ce5c98050acc8d1ed7d4ad85
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-06;
25         relTol          0.01;
26     }
28     "(U|h|k|epsilon)"
29     {
30         solver          PBiCG;
31         preconditioner  DILU;
32         tolerance       1e-05;
33         relTol          0.1;
34     }
36     G
37     {
38         $p_rgh;
39         tolerance       1e-05;
40         relTol          0.1;
41     }
44 SIMPLE
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;
55         G               1e-3;
57         // possibly check turbulence fields
58         "(k|epsilon|omega)" 1e-3;
59     }
62 relaxationFactors
64     rho             1.0;
65     p_rgh           0.7;
66     U               0.2;
67     h               0.2;
68     "(k|epsilon|R)" 0.5;
69     G               0.7;
73 // ************************************************************************* //