initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / tutorials / rhoPorousSimpleFoam / angledDuctExplicit / system / fvSolution
blob83ed3bd9a98d69e76ef4a4891e3148eb1608b08d
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.5                                   |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      fvSolution;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 solvers
19     p GAMG
20     {
21         tolerance        1e-8;
22         relTol           0.05;
24         smoother         GaussSeidel;
26         cacheAgglomeration off;
28         nCellsInCoarsestLevel 20;
29         agglomerator     faceAreaPair;
30         mergeLevels      1;
31     };
33     U smoothSolver
34     {
35         smoother         GaussSeidel;
36         nSweeps          2;
37         tolerance        1e-6;
38         relTol           0.1;
39     };
41     h PBiCG
42     {
43         preconditioner   DILU;
44         tolerance        1e-6;
45         relTol           0.1;
46     };
48     k smoothSolver
49     {
50         smoother         GaussSeidel;
51         nSweeps          2;
52         tolerance        1e-7;
53         relTol           0.1;
54     };
56     epsilon smoothSolver
57     {
58         smoother         GaussSeidel;
59         nSweeps          2;
60         tolerance        1e-7;
61         relTol           0.1;
62     };
65 SIMPLE
67     // nUCorrectors                 0;
68     nNonOrthogonalCorrectors     0;
69     pMin                         pMin   [1 -1 -2 0 0 0 0] 100;
72 relaxationFactors
74     p           0.3;
75     rho         0.05;
76     U           0.7;
77     k           0.7;
78     epsilon     0.7;
79     h           0.5;
82 // ************************************************************************* //