initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / tutorials / XiFoam / moriyoshiHomogeneous / system / fvSolution
blob35819bb013d775cf564cba1160c0adae75d33496
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     rho PCG
20     {
21         preconditioner   DIC;
22         tolerance        1e-05;
23         relTol           0;
24     };
25     U PBiCG
26     {
27         preconditioner   DILU;
28         tolerance        1e-05;
29         relTol           0;
30     };
31     p PCG
32     {
33         preconditioner   DIC;
34         tolerance        1e-06;
35         relTol           0;
36     };
37     ft PBiCG
38     {
39         preconditioner   DILU;
40         tolerance        1e-05;
41         relTol           0;
42     };
43     fu PBiCG
44     {
45         preconditioner   DILU;
46         tolerance        1e-05;
47         relTol           0;
48     };
49     b PBiCG
50     {
51         preconditioner   DILU;
52         tolerance        1e-05;
53         relTol           0;
54     };
55     Xi PBiCG
56     {
57         preconditioner   DILU;
58         tolerance        1e-05;
59         relTol           0;
60     };
61     Su PBiCG
62     {
63         preconditioner   DILU;
64         tolerance        1e-05;
65         relTol           0;
66     };
67     h PBiCG
68     {
69         preconditioner   DILU;
70         tolerance        1e-05;
71         relTol           0;
72     };
73     hu PBiCG
74     {
75         preconditioner   DILU;
76         tolerance        1e-05;
77         relTol           0;
78     };
79     R PBiCG
80     {
81         preconditioner   DILU;
82         tolerance        1e-05;
83         relTol           0;
84     };
85     k PBiCG
86     {
87         preconditioner   DILU;
88         tolerance        1e-05;
89         relTol           0;
90     };
91     epsilon PBiCG
92     {
93         preconditioner   DILU;
94         tolerance        1e-05;
95         relTol           0;
96     };
99 PISO
101     nCorrectors     2;
102     nNonOrthogonalCorrectors 0;
103     momentumPredictor yes;
106 // ************************************************************************* //