Transferred copyright to the OpenFOAM Foundation
[OpenFOAM-2.0.x.git] / tutorials / lagrangian / coalChemistryFoam / simplifiedSiwek / system / fvSolution
blob7ea50803175e05e5c477868ac9836c0daddad402
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     "(rho|G)"
21     {
22         solver          PCG;
23         preconditioner  DIC;
24         tolerance       1e-05;
25         relTol          0.1;
26     }
28    "(rho|G)Final"
29     {
30         $rho;
31         tolerance       1e-05;
32         relTol          0;
33     }
35     p
36     {
37         solver          GAMG;
38         tolerance       1e-06;
39         relTol          0.01;
40         smoother        GaussSeidel;
41         nPreSweeps      0;
42         nPostSweeps     2;
43         nFinestSweeps   2;
44         cacheAgglomeration false;
45         nCellsInCoarsestLevel 10;
46         agglomerator    faceAreaPair;
47         mergeLevels     1;
48     }
50     pFinal
51     {
52         $p;
53         tolerance       1e-06;
54         relTol          0;
55     }
57     "(U|hs|R|k|epsilon)"
58     {
59         solver          PBiCG;
60         preconditioner  DILU;
61         tolerance       1e-05;
62         relTol          0.1;
63     }
65     "(U|hs|R|k|epsilon)Final"
66     {
67         $U;
68         tolerance       1e-05;
69         relTol          0;
70     }
72     "(Yi|CO2|O2|N2|CH4|H2|H2O|CO)"
73     {
74         solver          PBiCG;
75         preconditioner  DILU;
76         tolerance       1e-06;
77         relTol          0.1;
78     }
80     "(Yi|CO2|O2|N2|CH4|H2|H2O|CO)Final"
81     {
82         $Yi;
83         preconditioner  DILU;
84         tolerance       1e-06;
85         relTol          0;
86     }
89 PIMPLE
91     transonic       yes;
92     nCorrectors     3;
93     nNonOrthogonalCorrectors 0;
94     momentumPredictor yes;
98 relaxationFactors
100     ".*Final"       1;
103 // ************************************************************************* //