BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / multiphase / interMixingFoam / laminar / damBreak / system / fvSolution
blobe8a2b04e672258ef2a87bf646aec8d89eb41dd79
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     "alpha."
21     {
22         solver          smoothSolver;
23         smoother        GaussSeidel;
24         tolerance       1e-06;
25         relTol          0;
26         nSweeps         1;
27     }
29     pcorr
30     {
31         solver          PCG;
32         preconditioner  DIC;
33         tolerance       1e-10;
34         relTol          0;
35     }
37     p_rgh
38     {
39         solver          PCG;
40         preconditioner  DIC;
41         tolerance       1e-07;
42         relTol          0.05;
43     }
45     p_rghFinal
46     {
47         solver          PCG;
48         preconditioner  DIC;
49         tolerance       1e-07;
50         relTol          0;
51     }
53     U
54     {
55         solver          PBiCG;
56         preconditioner  DILU;
57         tolerance       1e-06;
58         relTol          0;
59     }
62 PIMPLE
64     momentumPredictor no;
65     nCorrectors     3;
66     nNonOrthogonalCorrectors 0;
67     nAlphaCorr      1;
68     nAlphaSubCycles 2;
69     cAlpha          1;
73 // ************************************************************************* //