Improved setup.
[OpenFOAM-1.6.x.git] / tutorials / combustion / fireFoam / les / smallPoolFire2D / system / fvSolution
blobac4b5ee3ed9fb59fec01e8353c90274f565a9e29
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      http://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;
17 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
19 solvers
21     rho
22     {
23         solver          PCG;
24         preconditioner  DIC;
25         tolerance       0;
26         relTol          0;
27     };
29     p
30     {
31         solver              GAMG;
32         tolerance           1e-7;
33         relTol              0.01;
34         smoother            GaussSeidel;
35         cacheAgglomeration  true;
36         nCellsInCoarsestLevel   10;
37         agglomerator    faceAreaPair;
38         mergeLevels     1;
39     };
41     pFinal
42     {
43         solver              GAMG;
44         tolerance           1e-7;
45         relTol              0;
46         smoother            GaussSeidel;
47         cacheAgglomeration  true;
48         nCellsInCoarsestLevel 10;
49         agglomerator     faceAreaPair;
50         mergeLevels      1;
51     };
54     ft
55     {
56         solver          smoothSolver;
57         smoother        GaussSeidel;
58         tolerance       1e-7;
59         relTol          0;
60         nSweeps         1;
61     };
63     fu
64     {
65         solver          smoothSolver;
66         smoother        GaussSeidel;
67         tolerance       1e-7;
68         relTol          0;
69         nSweeps         1;
70     };
73     U
74     {
75         solver          smoothSolver;
76         smoother        GaussSeidel;
77         tolerance       1e-7;
78         relTol          0.1;
79         nSweeps         1;
80     };
82     UFinal
83     {
84         solver          smoothSolver;
85         smoother        GaussSeidel;
86         tolerance       1e-7;
87         relTol          0;
88         nSweeps         1;
89     };
91     k
92     {
93         solver          smoothSolver;
94         smoother        GaussSeidel;
95         tolerance       1e-7;
96         relTol          0;
97         nSweeps         1;
98     };
100     hs
101     {
102         solver          PBiCG;
103         preconditioner  DILU;
104         tolerance       1e-7;
105         relTol          0;
106     };
108     Ii
109     {
110         solver              GAMG;
111         tolerance           1e-4;
112         relTol              0;
113         smoother            DILU;
114         cacheAgglomeration  true;
115         nCellsInCoarsestLevel   10;
116         agglomerator    faceAreaPair;
117         mergeLevels     1;
118     }
120     G
121     {
122         solver          PCG;
123         preconditioner  DIC;
124         tolerance       1e-06;
125         relTol          0;
126     }
130 PISO
132     momentumPredictor yes;
133     nOuterCorrectors  1;
134     nCorrectors       2;
135     nNonOrthogonalCorrectors 0;
138 // ************************************************************************* //