initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / multiphase / compressibleInterFoam / les / depthCharge3D / system / fvSolution
blob872b88e305064461680491450ee55d6a5e729169
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     rho
44     {
45         solver          diagonal;
46     }
48     p
49     {
50         solver          GAMG;
51         tolerance       1e-07;
52         relTol          0.01;
53         smoother        DIC;
54         nPreSweeps      0;
55         nPostSweeps     2;
56         nFinestSweeps   2;
57         cacheAgglomeration true;
58         nCellsInCoarsestLevel 10;
59         agglomerator    faceAreaPair;
60         mergeLevels     1;
61     }
63     pFinal
64     {
65         solver          PCG;
66         preconditioner
67         {
68             preconditioner  GAMG;
69             tolerance       1e-07;
70             relTol          0;
71             nVcycles        2;
72             smoother        DICGaussSeidel;
73             nPreSweeps      2;
74             nPostSweeps     2;
75             nFinestSweeps   2;
76             cacheAgglomeration true;
77             nCellsInCoarsestLevel 10;
78             agglomerator    faceAreaPair;
79             mergeLevels     1;
80         }
82         tolerance       1e-07;
83         relTol          0;
84         maxIter         20;
85     }
87     U
88     {
89         solver          smoothSolver;
90         smoother        GaussSeidel;
91         tolerance       1e-06;
92         relTol          0;
93         nSweeps         1;
94     }
96     k
97     {
98         solver          PBiCG;
99         preconditioner  DILU;
100         tolerance       1e-08;
101         relTol          0;
102     }
104     B
105     {
106         solver          PBiCG;
107         preconditioner  DILU;
108         tolerance       1e-08;
109         relTol          0;
110     }
112     nuTilda
113     {
114         solver          PBiCG;
115         preconditioner  DILU;
116         tolerance       1e-08;
117         relTol          0;
118     }
121 PISO
123     momentumPredictor no;
124     transSonic      no;
125     nOuterCorrectors 3;
126     nCorrectors     1;
127     nNonOrthogonalCorrectors 0;
128     nAlphaCorr      1;
129     nAlphaSubCycles 1;
130     cAlpha          1;
134 // ************************************************************************* //