BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / incompressible / MRFSimpleFoam / mixerVessel2D / system / fvSolution
blob1dce7cf71d3c66698bd7e5837ef3009c25428da7
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
21     {
22         solver          GAMG;
23         tolerance       1e-08;
24         relTol          0.05;
25         smoother        GaussSeidel;
26         cacheAgglomeration true;
27         nCellsInCoarsestLevel 20;
28         agglomerator    faceAreaPair;
29         mergeLevels     1;
30     }
32     U
33     {
34         solver          smoothSolver;
35         smoother        GaussSeidel;
36         nSweeps         2;
37         tolerance       1e-07;
38         relTol          0.1;
39     }
41     k
42     {
43         solver          smoothSolver;
44         smoother        GaussSeidel;
45         nSweeps         2;
46         tolerance       1e-07;
47         relTol          0.1;
48     }
50     epsilon
51     {
52         solver          smoothSolver;
53         smoother        GaussSeidel;
54         nSweeps         2;
55         tolerance       1e-07;
56         relTol          0.1;
57     }
60 SIMPLE
62     nNonOrthogonalCorrectors 0;
63     pRefCell        0;
64     pRefValue       0;
67 relaxationFactors
69     p               0.3;
70     U               0.5;
71     k               0.5;
72     epsilon         0.5;
76 // ************************************************************************* //