Initial release of the new fireFoam solver and ancillary libraries.
[OpenFOAM-1.6.x.git] / tutorials / combustion / fireFoam / les / smallPoolFire2D / system / fvSolution
blob451022fb74d4eefeb71ab73f2db58ba8abf2d145
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 \*---------------------------------------------------------------------------*/
10 FoamFile
12     version     2.0;
13     format      ascii;
14     class       dictionary;
15     location    "system";
16     object      fvSolution;
19 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
21 solvers
23     rho
24     {
25         solver          PCG;
26         preconditioner  DIC;
27         tolerance       0;
28         relTol          0;
29     };
31     p
32     {
33         solver              GAMG;
34         tolerance           1e-7;
35         relTol              0.01;
36         smoother            GaussSeidel;
37         cacheAgglomeration  true;
38         nCellsInCoarsestLevel   10;
39         agglomerator    faceAreaPair;
40         mergeLevels     1;
41     };
43     pFinal
44     {
45         solver              GAMG;
46         tolerance           1e-7;
47         relTol              0;
48         smoother            GaussSeidel;
49         cacheAgglomeration  true;
50         nCellsInCoarsestLevel 10;
51         agglomerator     faceAreaPair;
52         mergeLevels      1;
53     };
56     ft
57     {
58         solver          smoothSolver;
59         smoother        GaussSeidel;
60         tolerance       1e-7;
61         relTol          0;
62         nSweeps         1;
63     };
65     fu
66     {
67         solver          smoothSolver;
68         smoother        GaussSeidel;
69         tolerance       1e-7;
70         relTol          0;
71         nSweeps         1;
72     };
75     U
76     {
77         solver          smoothSolver;
78         smoother        GaussSeidel;
79         tolerance       1e-7;
80         relTol          0.1;
81         nSweeps         1;
82     };
84     UFinal
85     {
86         solver          smoothSolver;
87         smoother        GaussSeidel;
88         tolerance       1e-7;
89         relTol          0;
90         nSweeps         1;
91     };
93     k
94     {
95         solver          smoothSolver;
96         smoother        GaussSeidel;
97         tolerance       1e-7;
98         relTol          0;
99         nSweeps         1;
100     };
102     hs
103     {
104         solver          PBiCG;
105         preconditioner  DILU;
106         tolerance       1e-7;
107         relTol          0;
108     };
110     Ii
111     {
112         solver          PBiCG;
113         preconditioner  DILU;
114         tolerance       1e-06;
115         relTol          0.;
116     }
118     G
119     {
120         solver          PCG;
121         preconditioner  DIC;
122         tolerance       1e-06;
123         relTol          0.;
124     }
128 PISO
130     momentumPredictor yes;
131     nOuterCorrectors  1;
132     nCorrectors       2;
133     nNonOrthogonalCorrectors 0;
136 // ************************************************************************* //