initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / compressible / rhoPorousSimpleFoam / angledDuctImplicit / system / fvSolution
blob334b1287bd274f31232a39ca57e07a2401544a01
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      binary;
12     class       dictionary;
13     location    "system";
14     object      fvSolution;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 solvers
20     p
21     {
22         solver          GAMG;
23         tolerance       1e-08;
24         relTol          0.05;
25         smoother        GaussSeidel;
26         cacheAgglomeration off;
27         nCellsInCoarsestLevel 20;
28         agglomerator    faceAreaPair;
29         mergeLevels     1;
30     }
32     h
33     {
34         solver          PBiCG;
35         preconditioner  DILU;
36         tolerance       1e-06;
37         relTol          0.1;
38     }
40     k
41     {
42         solver          smoothSolver;
43         smoother        GaussSeidel;
44         nSweeps         2;
45         tolerance       1e-07;
46         relTol          0.1;
47     }
49     epsilon
50     {
51         solver          smoothSolver;
52         smoother        GaussSeidel;
53         nSweeps         2;
54         tolerance       1e-07;
55         relTol          0.1;
56     }
59 SIMPLE
61     nUCorrectors    2;
62     nNonOrthogonalCorrectors 0;
63     pMin            pMin [ 1 -1 -2 0 0 0 0 ] 100;
66 relaxationFactors
68     p               0.3;
69     rho             1;
70     U               0.7;
71     k               0.9;
72     epsilon         0.9;
73     h               0.9;
77 // ************************************************************************* //