initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / tutorials / simpleSRFFoam / mixer / system / fvSolution
blobf16662b3e5152175f478cd786dfc5fb46abcaaa8
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 PCG
20     {
21         preconditioner   DIC;
22         tolerance        1e-06;
23         relTol           0.01;
24     };
25     Urel PBiCG
26     {
27         preconditioner   DILU;
28         tolerance        1e-05;
29         relTol           0.1;
30     };
31     k PBiCG
32     {
33         preconditioner   DILU;
34         tolerance        1e-05;
35         relTol           0.1;
36     };
37     epsilon PBiCG
38     {
39         preconditioner   DILU;
40         tolerance        1e-05;
41         relTol           0.1;
42     };
43     omega PBiCG
44     {
45         preconditioner   DILU;
46         tolerance        1e-05;
47         relTol           0.1;
48     };
49     R PBiCG
50     {
51         preconditioner   DILU;
52         tolerance        1e-05;
53         relTol           0.1;
54     };
55     nuTilda PBiCG
56     {
57         preconditioner   DILU;
58         tolerance        1e-05;
59         relTol           0.1;
60     };
63 SIMPLE
65     nNonOrthogonalCorrectors 0;
68 relaxationFactors
70     p               0.3;
71     Urel            0.7;
72     k               0.7;
73     epsilon         0.7;
74     omega           0.7;
75     R               0.7;
76     nuTilda         0.7;
79 // ************************************************************************* //