initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / incompressible / simpleFoam / motorBike / system / fvSolution
blob2dcaef0c14e2629e85f45680a6d60b704a33e229
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
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
20     {
21         solver           GAMG;
22         tolerance        1e-7;
23         relTol           0.1;
24         smoother         GaussSeidel;
25         nPreSweeps       0;
26         nPostSweeps      2;
27         cacheAgglomeration on;
28         agglomerator     faceAreaPair;
29         nCellsInCoarsestLevel 10;
30         mergeLevels      1;
31     };
33     U
34     {
35         solver           smoothSolver;
36         smoother         GaussSeidel;
37         tolerance        1e-8;
38         relTol           0.1;
39         nSweeps          1;
40     };
42     k
43     {
44         solver           smoothSolver;
45         smoother         GaussSeidel;
46         tolerance        1e-8;
47         relTol           0.1;
48         nSweeps          1;
49     };
51     omega
52     {
53         solver           smoothSolver;
54         smoother         GaussSeidel;
55         tolerance        1e-8;
56         relTol           0.1;
57         nSweeps          1;
58     };
61 SIMPLE
63     nNonOrthogonalCorrectors 0;
66 relaxationFactors
68     p               0.3;
69     U               0.7;
70     k               0.7;
71     omega           0.7;
74 // ************************************************************************* //