Correction to the compilation of mesquite-2.1.2. Bug fix contributed by Philippose...
[OpenFOAM-1.6-ext.git] / tutorials / compressible / rhoPorousMRFPimpleFoam / mixerVessel2D / system / fvSolution
blob8f9f1344e1416ce52c4c008d1eb52f89acf2eebd
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM Extend Project: Open Source CFD        |
4 |  \\    /   O peration     | Version:  1.6-ext                               |
5 |   \\  /    A nd           | Web:      www.extend-project.de                 |
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     rho
21     {
22         solver          PCG;
23         preconditioner  DIC;
24         tolerance       1e-5;
25         relTol          0;
26     }
28     U
29     {
30         solver          PBiCG;
31         preconditioner  DILU;
32         tolerance       1e-5;
33         relTol          0.1;
34     }
36     UFinal
37     {
38         solver          PBiCG;
39         preconditioner  DILU;
40         tolerance       1e-5;
41         relTol          0;
42     }
44     p
45     {
46         solver          GAMG;
47         tolerance       1e-6;
48         relTol          0.05;
49         smoother        GaussSeidel;
50         cacheAgglomeration true;
51         nCellsInCoarsestLevel 20;
52         agglomerator    faceAreaPair;
53         mergeLevels     1;
54     }
56     pFinal
57     {
58         solver          GAMG;
59         tolerance       1e-6;
60         relTol          0;
61         smoother        GaussSeidel;
62         cacheAgglomeration true;
63         nCellsInCoarsestLevel 20;
64         agglomerator    faceAreaPair;
65         mergeLevels     1;
66     }
68     h
69     {
70         solver          PBiCG;
71         preconditioner  DILU;
72         tolerance       1e-5;
73         relTol          0.1;
74     }
76     hFinal
77     {
78         solver          PBiCG;
79         preconditioner  DILU;
80         tolerance       1e-5;
81         relTol          0;
82     }
84     k
85     {
86         solver          PBiCG;
87         preconditioner  DILU;
88         tolerance       1e-5;
89         relTol          0;
90     }
92     epsilon
93     {
94         solver          PBiCG;
95         preconditioner  DILU;
96         tolerance       1e-5;
97         relTol          0;
98     }
101 PIMPLE
103     nOuterCorrectors 1;
104     nCorrectors     2;
105     nNonOrthogonalCorrectors 0;
106     momentumPredictor yes;
107     pMin            pMin [ 1 -1 -2 0 0 0 0 ] 1000;
108     pRefCell        0;
109     pRefValue       1e5;
112 relaxationFactors
114     U               1;
115     h               1;
116     k               1;
117     epsilon         1;
120 // ************************************************************************* //