BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / buoyantSimpleFoam / circuitBoardCooling / system / fvSolution
blobfcc1f7787653fdf2807226877fe31590788d539a
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 no;
46     nNonOrthogonalCorrectors 0;
47     pRefCell        0;
48     pRefValue       0;
50     residualControl
51     {
52         p_rgh           5e-3;
53         U               3e-4;
54         h               3e-4;
56         // possibly check turbulence fields
57         "(k|epsilon|omega)" 5e-3;
58     }
61 relaxationFactors
63     rho             1.0;
64     p_rgh           0.7;
65     U               0.7;
66     h               0.3;
67     "(k|epsilon|omega)" 0.3;
71 // ************************************************************************* //