Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / viscoelastic / viscoelasticFluidFoam / Leonov / system / fvSolution
blobac1820095ad28d90c6093543fb74a2addd966d63
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.2                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.org         |
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     sigma
44     {
46         solver           BiCGStab;
47         preconditioner   ILU0;
49         tolerance         1e-6;
50         relTol            0;
51         minIter           0;
52         maxIter           1000;
54     };
58 PISO
60     nCorrectors    2;
61     nNonOrthogonalCorrectors 0;
62     pRefCell        0;
63     pRefValue       0;
66 relaxationFactors
68     p               0.3;
69     U               0.5;
70     tau             0.3;
73 // ************************************************************************* //