Fix tutorials: typo in tutorials/viscoelastic/viscoelasticFluidFoam/S-MDCPP/constant...
[OpenFOAM-1.6-ext.git] / tutorials / incompressible / icoDyMFoam / mixer2D / system / fvSolution
blob6e99f282831665204d12d82e66683d08f7ed62a4
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.4                                   |
5 |   \\  /    A nd           | Web:      http://www.openfoam.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
9 FoamFile
11     version         2.0;
12     format          ascii;
14     root            "";
15     case            "";
16     instance        "";
17     local           "";
19     class           dictionary;
20     object          fvSolution;
23 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
25 solvers
27     pcorr PCG
28     {
29         preconditioner
30         {
31             type         DIC;
32         }
34         minIter          0;
35         maxIter          1000;
36         tolerance        1e-02;
37         relTol           0;
38     };
40     p PCG
41     {
42         preconditioner
43         {
44             type         DIC;
45         }
47         minIter          0;
48         maxIter          1000;
49         tolerance        1e-06;
50         relTol           0.05;
51     };
53     pFinal PCG
54     {
55         preconditioner
56         {
57             type         DIC;
58         }
60         minIter          0;
61         maxIter          1000;
62         tolerance        1e-06;
63         relTol           0;
64     };
66     U PBiCG
67     {
68         preconditioner   
69         {
70             type         DILU;
71         }
73         minIter          0;
74         maxIter          1000;
75         tolerance        1e-05;
76         relTol           0;
77     };
79     cellMotionUx PCG
80     {
81         preconditioner      
82         {
83             type         DIC;
84         }
86         minIter          0;
87         maxIter          1000;
88         tolerance        1e-08;
89         relTol           0;
90     };
93 PISO
95     nCorrectors     4;
96     nNonOrthogonalCorrectors 0;
98     pRefCell        0;
99     pRefValue       0;
103 // ************************************************************************* //