initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / tutorials / MRFSimpleFoam / mixerVessel2D / system / fvSolution
blob1a2ddd83a3aa535e211397464349916a3123717d
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 true;
28         nCellsInCoarsestLevel 20;
29         agglomerator     faceAreaPair;
30         mergeLevels      1;
31     };
33     U smoothSolver
34     {
35         smoother         GaussSeidel;
36         nSweeps          2;
37         tolerance        1e-7;
38         relTol           0.1;
39     };
41     k smoothSolver
42     {
43         smoother         GaussSeidel;
44         nSweeps          2;
45         tolerance        1e-7;
46         relTol           0.1;
47     };
49     epsilon smoothSolver
50     {
51         smoother         GaussSeidel;
52         nSweeps          2;
53         tolerance        1e-7;
54         relTol           0.1;
55     };
58 SIMPLE
60     nNonOrthogonalCorrectors 0;
61     pRefCell 0;
62     pRefValue 0;
65 relaxationFactors
67     p               0.3;
68     U               0.5;
69     k               0.5;
70     epsilon         0.5;
73 // ************************************************************************* //