initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / multiphase / interDyMFoam / ras / sloshingTank3D / system / fvSolution
blobc9d858ae5451f1ac36a2854dc1a56efeb1e5f712
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
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;
23         preconditioner
24         {
25             preconditioner  GAMG;
26             tolerance       1e-05;
27             relTol          0;
28             smoother        DICGaussSeidel;
29             nPreSweeps      0;
30             nPostSweeps     2;
31             nBottomSweeps   2;
32             cacheAgglomeration false;
33             nCellsInCoarsestLevel 10;
34             agglomerator    faceAreaPair;
35             mergeLevels     1;
36         }
38         tolerance       1e-05;
39         relTol          0;
40         maxIter         100;
41     }
43     p
44     {
45         solver          GAMG;
46         tolerance       1e-08;
47         relTol          0.01;
48         smoother        DIC;
49         nPreSweeps      0;
50         nPostSweeps     2;
51         nFinestSweeps   2;
52         cacheAgglomeration true;
53         nCellsInCoarsestLevel 10;
54         agglomerator    faceAreaPair;
55         mergeLevels     1;
56     }
58     pFinal
59     {
60         solver          PCG;
61         preconditioner
62         {
63             preconditioner  GAMG;
64             tolerance       2e-09;
65             relTol          0;
66             nVcycles        2;
67             smoother        DICGaussSeidel;
68             nPreSweeps      2;
69             nPostSweeps     2;
70             nFinestSweeps   2;
71             cacheAgglomeration true;
72             nCellsInCoarsestLevel 10;
73             agglomerator    faceAreaPair;
74             mergeLevels     1;
75         }
77         tolerance       2e-09;
78         relTol          0;
79         maxIter         20;
80     }
82     U
83     {
84         solver          smoothSolver;
85         smoother        GaussSeidel;
86         tolerance       1e-06;
87         relTol          0;
88         nSweeps         1;
89     }
92 PISO
94     momentumPredictor no;
95     nCorrectors     2;
96     nNonOrthogonalCorrectors 0;
97     nAlphaCorr      1;
98     nAlphaSubCycles 3;
99     cAlpha          1.5;
100     correctPhi      no;
102     pRefPoint       (0 0 0.15);
103     pRefValue       1e5;
106 relaxationFactors
108     U               1;
112 // ************************************************************************* //