BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / compressible / rhoPimpleFoam / ras / cavity / system / fvSolution
blobd7c8f6d8479bbbb9c463a9f9ff657c19030c1d73
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          PCG;
23         preconditioner  DIC;
24         tolerance       1e-06;
25         relTol          0.01;
26     }
28     pFinal
29     {
30         $p;
31         relTol          0;
32     }
34     "rho.*"
35     {
36         $p;
37         tolerance       1e-05;
38         relTol          0;
39     }
41     "(U|h|R|k|epsilon|omega)"
42     {
43         solver          PBiCG;
44         preconditioner  DILU;
45         tolerance       1e-05;
46         relTol          0.1;
47     }
49     "(U|h|R|k|epsilon|omega)Final"
50     {
51         $U;
52         relTol          0;
53     }
56 PIMPLE
58     momentumPredictor yes;
59     nOuterCorrectors 1;
60     nCorrectors     2;
61     nNonOrthogonalCorrectors 0;
62     rhoMin          rhoMin [ 1 -3 0 0 0 ] 0.5;
63     rhoMax          rhoMax [ 1 -3 0 0 0 ] 2.0;
67 // ************************************************************************* //