Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / multiphase / compressibleInterFoam / les / depthCharge2D / system / fvSolution
blob51d8a389cc735ee27d6f06f2e83f5f4183de15a4
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.com                      |
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             nFinestSweeps   2;
32             cacheAgglomeration false;
33             nCellsInCoarsestLevel 10;
34             agglomerator    faceAreaPair;
35             mergeLevels     1;
36         }
37         tolerance       1e-05;
38         relTol          0;
39         maxIter         100;
40     }
42     "(rho|rhoFinal)"
43     {
44         solver          diagonal;
45     }
47     p_rgh
48     {
49         solver          GAMG;
50         tolerance       1e-07;
51         relTol          0.01;
52         smoother        DIC;
53         nPreSweeps      0;
54         nPostSweeps     2;
55         nFinestSweeps   2;
56         cacheAgglomeration true;
57         nCellsInCoarsestLevel 10;
58         agglomerator    faceAreaPair;
59         mergeLevels     1;
60     }
62     p_rghFinal
63     {
64         solver          PCG;
65         preconditioner
66         {
67             preconditioner  GAMG;
68             tolerance       1e-07;
69             relTol          0;
70             nVcycles        2;
71             smoother        DICGaussSeidel;
72             nPreSweeps      2;
73             nPostSweeps     2;
74             nFinestSweeps   2;
75             cacheAgglomeration true;
76             nCellsInCoarsestLevel 10;
77             agglomerator    faceAreaPair;
78             mergeLevels     1;
79         }
80         tolerance       1e-07;
81         relTol          0;
82         maxIter         20;
83     }
85     U
86     {
87         solver          smoothSolver;
88         smoother        GaussSeidel;
89         tolerance       1e-06;
90         relTol          0;
91         nSweeps         1;
92     }
94     "(k|B|nuTilda)"
95     {
96         solver          PBiCG;
97         preconditioner  DILU;
98         tolerance       1e-08;
99         relTol          0;
100     }
103 PIMPLE
105     momentumPredictor no;
106     transSonic      no;
107     nOuterCorrectors 3;
108     nCorrectors     1;
109     nNonOrthogonalCorrectors 0;
110     nAlphaCorr      1;
111     nAlphaSubCycles 1;
112     cAlpha          1;
116 // ************************************************************************* //