Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / compressible / rhoPorousMRFSimpleFoam / angledDuctImplicit / system / fvSolution
blob01631dd641ccc6851f23acd174bec784a6993d16
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     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|epsilon)"
41     {
42         solver          smoothSolver;
43         smoother        GaussSeidel;
44         nSweeps         2;
45         tolerance       1e-07;
46         relTol          0.1;
47     }
50 SIMPLE
52     nUCorrectors    2;
53     nNonOrthogonalCorrectors 0;
54     rhoMin          rhoMin [ 1 -3 0 0 0 ] 0.5;
55     rhoMax          rhoMAx [ 1 -3 0 0 0 ] 2.0;
57     residualControl
58     {
59         p               1e-3;
60         U               1e-4;
61         T               1e-3;
63         // possibly check turbulence fields
64         "(k|epsilon|omega)" 1e-3;
65     }
68 relaxationFactors
70     p               0.3;
71     rho             1;
72     U               0.7;
73     "(k|epsilon)"   0.9;
74     h               0.9;
78 // ************************************************************************* //