Transferred copyright to the OpenFOAM Foundation
[OpenFOAM-2.0.x.git] / tutorials / combustion / fireFoam / les / smallPoolFire3D / system / fvSolution
blob27377d0618ab5eb22f78acac70ef841944d7825c
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|rhoFinal)"
21     {
22         solver              PCG;
23         preconditioner      DIC;
24         tolerance           1e-7;
25         relTol              0;
26     };
28     p_rgh
29     {
30         solver              GAMG;
31         tolerance           1e-7;
32         relTol              0.01;
33         smoother            GaussSeidel;
34         cacheAgglomeration  true;
35         nCellsInCoarsestLevel   10;
36         agglomerator    faceAreaPair;
37         mergeLevels     1;
38     };
40     p_rghFinal
41     {
42         $p_rgh;
43         tolerance           1e-8;
44         relTol              0;
45     };
48     "(U|Yi|k|hs)"
49     {
50         solver          PBiCG;
51         preconditioner  DILU;
52         tolerance       1e-7;
53         relTol          0.1;
54         nSweeps         1;
55     };
57     "(U|Yi|k|hs)Final"
58     {
59         $U;
60         tolerance       1e-8;
61         relTol          0;
62     };
64     Ii
65     {
66         solver              GAMG;
67         tolerance           1e-4;
68         relTol              0;
69         smoother            DILU;
70         cacheAgglomeration  true;
71         nCellsInCoarsestLevel   10;
72         agglomerator    faceAreaPair;
73         mergeLevels     1;
74     }
76     G
77     {
78         solver          PCG;
79         preconditioner  DIC;
80         tolerance       1e-04;
81         relTol          0;
82     }
86 PIMPLE
88     momentumPredictor yes;
89     nOuterCorrectors  1;
90     nCorrectors       1;
91     nNonOrthogonalCorrectors 0;
94 relaxationFactors
96     "(U|k).*"                   1;
97     "(C3H8|O2|H2O|CO2|hs).*"    0.9;
100 // ************************************************************************* //