Enable multiSolver example in test loop
[foam-extend-3.2.git] / tutorials / multiSolver / multiSolverDemo / teeFitting2d / parTeeFitting2d / system / multiFvSolution
blob133de7424afee5586efa93048a260e99d9f36d0e
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.5-dev                               |
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      multiFvSolution;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
16 dictionaryName  fvSolution;
18 multiSolver
20     icoFoam1
21     {
22         solvers
23         {
24             p
25             {
26                 solver           PCG;
27                 preconditioner   DIC;
28                 tolerance        1e-06;
29                 relTol           0;
30             };
32             U
33             {
34                 solver           PBiCG;
35                 preconditioner   DILU;
36                 tolerance        1e-05;
37                 relTol           0;
38             };
39         }
41         PISO
42         {
43             nCorrectors     2;
44             nNonOrthogonalCorrectors 0;
45             pRefCell        0;
46             pRefValue       0;
47         }
48     }
50     icoFoam2
51     {
52         solvers
53         {
54             p
55             {
56                 solver           PCG;
57                 preconditioner   DIC;
58                 tolerance        1e-06;
59                 relTol           0;
60             };
62             U
63             {
64                 solver           PBiCG;
65                 preconditioner   DILU;
66                 tolerance        1e-05;
67                 relTol           0;
68             };
69         }
71         PISO
72         {
73             nCorrectors     2;
74             nNonOrthogonalCorrectors 0;
75             pRefCell        0;
76             pRefValue       0;
77         }
78     }
79     
80     scalarTransportFoam
81     {
82         solvers
83         {
84             T
85             {
86                 solver           PBiCG;
87                 preconditioner   DILU;
88                 tolerance        1e-05;
89                 relTol           0;
90             };
91         }
93         SIMPLE
94         {
95             nNonOrthogonalCorrectors 0;
96         }
97     }
100 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //