STYLE: miss-aligned Headers
[foam-extend-3.2.git] / tutorials / viscoelastic / viscoelasticFluidFoam / XPP_SE / system / fvSolution
blob6d34decd6424d2dd3b963ba4f6c1f5a76ff35174
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.0                                |
5 |   \\  /    A nd           | Web:         http://www.extend-project.de       |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      fvSolution;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 solvers
20     p
21     {
22         solver          PCG;
23         preconditioner  Cholesky;
25         tolerance        1e-07;
26         relTol           0;
27         minIter          0;
28         maxIter          800;
29     }
31     U
32     {
34         solver           BiCGStab;
35         preconditioner   ILU0;
37         tolerance         1e-6;
38         relTol            0;
39         minIter           0;
40         maxIter           1000;
41     }
43     taufirst
44     {
45         solver            BiCGStab;
46         preconditioner   ILU0;
48         tolerance         1e-6;
49         relTol            0;
50         minIter           0;
51         maxIter           1000;
52     }
54     tausecond
55     {
56         solver            BiCGStab;
57         preconditioner   ILU0;
59         tolerance         1e-6;
60         relTol            0;
61         minIter           0;
62         maxIter           1000;
63     }
65     tauthird
66     {
67         solver            BiCGStab;
68         preconditioner   ILU0;
70         tolerance         1e-6;
71         relTol            0;
72         minIter           0;
73         maxIter           1000;
74     }
76     taufourth
77     {
78         solver            BiCGStab;
79         preconditioner   ILU0;
81         tolerance         1e-6;
82         relTol            0;
83         minIter           0;
84         maxIter           1000;
85     }
87     taufifth
88     {
89         solver            BiCGStab;
90         preconditioner   ILU0;
92         tolerance         1e-6;
93         relTol            0;
94         minIter           0;
95         maxIter           1000;
96     }
98     tausixth
99     {
100         solver            BiCGStab;
101         preconditioner   ILU0;
103         tolerance         1e-6;
104         relTol            0;
105         minIter           0;
106         maxIter           1000;
107     }
111 PISO
113     nCorrectors    2;
114     nNonOrthogonalCorrectors 0;
115     pRefCell        0;
116     pRefValue       0;
119 relaxationFactors
121     p                     0.3;
123     U                     0.5;
125     taufirst              0.3;
126     tausecond             0.3;
127     tauthird              0.3;
128     taufourth             0.3;
129     taufifth              0.3;
130     tausixth              0.3;
134 // ************************************************************************* //