BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / multiphase / LTSInterFoam / wigleyHull / system / fvSolution
blobe14721abe50564cabbb53d19459967c6ea67f694
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     pcorr
21     {
22         solver          PCG;
24         preconditioner
25         {
26             preconditioner  GAMG;
28             smoother        DICGaussSeidel;
29             agglomerator    faceAreaPair;
30             mergeLevels     1;
31             nCellsInCoarsestLevel 10;
32             cacheAgglomeration true;
34             tolerance       1e-5;
35             relTol          0;
36         };
38         tolerance       1e-5;
39         relTol          0;
40     };
42     p_rgh
43     {
44         solver          GAMG;
46         smoother        GaussSeidel;
47         agglomerator    faceAreaPair;
48         mergeLevels     1;
49         nCellsInCoarsestLevel 10;
50         cacheAgglomeration true;
52         tolerance       1e-6;
53         relTol          0.01;
54     };
56     p_rghFinal
57     {
58         $p_rgh;
59         tolerance       1e-6;
60         relTol          0;
61     }
63     "(U|k|omega).*"
64     {
65         solver          smoothSolver;
67         smoother        GaussSeidel;
68         nSweeps         1;
70         tolerance       1e-7;
71         relTol          0.1;
72     };
75 PIMPLE
77     momentumPredictor yes;
79     nCorrectors     1;
80     nNonOrthogonalCorrectors 0;
82     nAlphaCorr      1;
83     nAlphaSubCycles 1;
84     cAlpha          1;
86     maxCo           0.9;
87     maxAlphaCo      0.2;
88     nAlphaSweepIter 1;
90     rDeltaTSmoothingCoeff 0.1;
91     rDeltaTDampingCoeff 1;
92     maxDeltaT       1;
95 relaxationFactors
97     p_rgh           0.3;
98     p_rghFinal      0.3;
102 // ************************************************************************* //