BUG: patchCloudSet: only take hits. Use local bounding box for tree
[OpenFOAM-1.7.x.git] / tutorials / combustion / fireFoam / les / smallPoolFire3D / system / fvSolution
blob7351f66434fdd0c2c776c76bf8b5c0c471b0bcdb
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.7.1                                 |
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;
17 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
19 solvers
21     rho
22     {
23         solver          PCG;
24         preconditioner  DIC;
25         tolerance       0;
26         relTol          0;
27     };
29     p_rgh
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     p_rghFinal
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     };
53     ft
54     {
55         solver          smoothSolver;
56         smoother        GaussSeidel;
57         tolerance       1e-7;
58         relTol          0;
59         nSweeps         1;
60     };
62     fu
63     {
64         solver          smoothSolver;
65         smoother        GaussSeidel;
66         tolerance       1e-7;
67         relTol          0;
68         nSweeps         1;
69     };
72     U
73     {
74         solver          smoothSolver;
75         smoother        GaussSeidel;
76         tolerance       1e-7;
77         relTol          0.1;
78         nSweeps         1;
79     };
81     UFinal
82     {
83         solver          smoothSolver;
84         smoother        GaussSeidel;
85         tolerance       1e-7;
86         relTol          0;
87         nSweeps         1;
88     };
90     k
91     {
92         solver          smoothSolver;
93         smoother        GaussSeidel;
94         tolerance       1e-7;
95         relTol          0;
96         nSweeps         1;
97     };
99     hs
100     {
101         solver          PBiCG;
102         preconditioner  DILU;
103         tolerance       1e-7;
104         relTol          0;
105     };
107     Ii
108     {
109         solver              GAMG;
110         tolerance           1e-5;
111         relTol              0.0;
112         smoother            DILU;
113         cacheAgglomeration  true;
114         nCellsInCoarsestLevel   10;
115         agglomerator    faceAreaPair;
116         mergeLevels     1;
117     }
119     G
120     {
121         solver          PCG;
122         preconditioner  DIC;
123         tolerance       1e-05;
124         relTol          0.;
125     }
129 PISO
131     momentumPredictor yes;
132     nOuterCorrectors  1;
133     nCorrectors       2;
134     nNonOrthogonalCorrectors 0;
137 // ************************************************************************* //