BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / multiphase / cavitatingFoam / les / throttle / system / fvSolution
blob72becaa4a2d1ec136511019fd7c410b15f5f9c57
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     rho
21     {
22         solver          PBiCG;
23         preconditioner  DILU;
24         tolerance       1e-08;
25         relTol          0.1;
26     }
28     rhoFinal
29     {
30         solver          PBiCG;
31         preconditioner  DILU;
32         tolerance       1e-08;
33         relTol          0;
34     }
37     p
38     {
39         solver          GAMG;
40         tolerance       0;
41         relTol          0.1;
42         smoother        GaussSeidel;
43         nPreSweeps      0;
44         nPostSweeps     2;
45         cacheAgglomeration true;
46         nCellsInCoarsestLevel 10;
47         agglomerator    faceAreaPair;
48         mergeLevels     1;
49     }
51     pFinal
52     {
53         $p;
54         tolerance       1e-08;
55         relTol          0;
56     }
58     "(U|k|omega)"
59     {
60         solver          PBiCG;
61         preconditioner  DILU;
62         tolerance       1e-08;
63         relTol          0.1;
64     }
66     "(U|k|omega)Final"
67     {
68         solver          PBiCG;
69         preconditioner  DILU;
70         tolerance       1e-08;
71         relTol          0;
72     }
75 PIMPLE
77     nCorrectors     3;
78     nNonOrthogonalCorrectors 0;
82 // ************************************************************************* //