Upgrade case file headers
[foam-extend-3.2.git] / tutorials / viscoelastic / viscoelasticFluidFoam / S-MDCPP / system / fvSolution
blob5bd4ca76e1af3fad861c6b90bb752be0a2369db9
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           CG;
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     tau
44     {
45         solver            BiCGStab;
46         preconditioner   ILU0;
48         tolerance         1e-6;
49         relTol            0;
50         minIter           0;
51         maxIter           1000;
52     }
56 PISO
58     nCorrectors    2;
59     nNonOrthogonalCorrectors 0;
60     pRefCell        0;
61     pRefValue       0;
64 relaxationFactors
66     p                     0.3;
68     U                     0.5;
70     tau                   0.3;
74 // ************************************************************************* //