BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / multiphase / cavitatingFoam / les / throttle3D / system / fvSolution
blobcac892f3806534dca7904c97e9c4fb78f2c33447
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         $rho;
31         tolerance       1e-08;
32         relTol          0;
33     }
35     p
36     {
37         solver          GAMG;
38         tolerance       0;
39         relTol          0.1;
40         smoother        GaussSeidel;
41         nPreSweeps      0;
42         nPostSweeps     2;
43         cacheAgglomeration true;
44         nCellsInCoarsestLevel 10;
45         agglomerator    faceAreaPair;
46         mergeLevels     1;
47     }
49     pFinal
50     {
51         $p;
52         tolerance       1e-08;
53         relTol          0;
54     }
56     "(U|k|omega)"
57     {
58         solver          PBiCG;
59         preconditioner  DILU;
60         tolerance       1e-08;
61         relTol          0.1;
62     }
64     "(U|k|omega)Final"
65     {
66         $U;
67         tolerance       1e-08;
68         relTol          0;
69     }
72 PIMPLE
74     nCorrectors     3;
75     nNonOrthogonalCorrectors 0;
79 // ************************************************************************* //