Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / lagrangian / reactingParcelFilmFoam / rivuletPanel / system / fvSolution
blob8827bd923ef42495b2a3895bdaa93354c43df42f
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.com                      |
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       0;
25         relTol          0.1;
26     }
28     "(rho|G)Final"
29     {
30         $rho;
31         tolerance       1e-05;
32         relTol          0;
33     }
35     "(U|hs)"
36     {
37         solver          PBiCG;
38         preconditioner  DILU;
39         tolerance       0;
40         relTol          0.1;
41     }
43     "(U|hs)Final"
44     {
45         $U;
46         relTol          0;
47         tolerance       1e-05;
48     }
50     "(k|epsilon)"
51     {
52         $UFinal;
53     }
55     p_rgh
56     {
57         solver          PCG;
58         preconditioner  DIC;
59         tolerance       0;
60         relTol          0.1;
61     }
63     p_rghFinal
64     {
65         $p_rgh;
66         tolerance       1e-06;
67         relTol          0;
68     }
70     "(Yi|O2|N2|H2O)"
71     {
72         $hsFinal;
73     }
76 PIMPLE
78     nCorrectors     2;
79     nNonOrthogonalCorrectors 0;
80     momentumPredictor yes;
83 relaxationFactors
85     ".*Final"       1;
89 // ************************************************************************* //