BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / incompressible / shallowWaterFoam / squareBump / system / fvSolution
blobfca1f77b1968861a295840dbdce817b689b27a71
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     object      fvSolution;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 solvers
19     h
20     {
21         solver          PCG;
22         preconditioner  DIC;
23         tolerance       1e-6;
24         relTol          0.01;
25     }
27     hFinal
28     {
29         $h;
30         tolerance       1e-8;
31         relTol          0;
32     }
34     hU
35     {
36         solver          PBiCG;
37         preconditioner  DILU;
38         tolerance       1e-6;
39         relTol          0.1;
40     }
42     hUFinal
43     {
44         $hU;
45         tolerance       1e-6;
46         relTol          0;
47     }
50 PIMPLE
52     nOuterCorrectors 3;
53     nCorrectors      1;
54     nNonOrthogonalCorrectors 0;
56     momentumPredictor yes;
59 // ************************************************************************* //