Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / lagrangian / porousExplicitSourceReactingParcelFoam / verticalChannel / system / fvSolution
blob49e1c0f5fb4cbe7c8fced43fc0b33d70a03ee569
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
21     {
22         solver          PCG;
23         preconditioner  DIC;
24         tolerance       1e-05;
25         relTol          0.1;
26     }
28     rhoFinal
29     {
30         $rho;
31         tolerance       1e-05;
32         relTol          0;
33     }
35     "(U|hs|k|omega)"
36     {
37         solver          PBiCG;
38         preconditioner  DILU;
39         tolerance       1e-06;
40         relTol          0.1;
41     }
43     "(U|hs|k|omega)Final"
44     {
45         $U;
46         tolerance       1e-06;
47         relTol          0;
48     }
50     p
51     {
52         solver          GAMG;
53         tolerance       0;
54         relTol          0.1;
55         smoother        GaussSeidel;
56         nPreSweeps      0;
57         nPostSweeps     2;
58         cacheAgglomeration true;
59         nCellsInCoarsestLevel 10;
60         agglomerator    faceAreaPair;
61         mergeLevels     1;
62     }
64     pFinal
65     {
66         $p;
67         tolerance       1e-06;
68         relTol          0;
69     }
71     "(Yi|O2|N2|H2O)"
72     {
73         $hsFinal;
74     }
77 PIMPLE
79     nCorrectors     3;
80     nNonOrthogonalCorrectors 0;
81     momentumPredictor yes;
84 potentialFlow
86     // used for potentialFoam initialisation
87     nNonOrthogonalCorrectors 10;
90 additional
92     pressureWork    false;
93     pressureWorkTimeDerivative false;
96 relaxationFactors
98     ".*Final"       1;
101 // ************************************************************************* //