Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / immersedBoundary / cylBumpInterIbFoam / system / fvSolution
blob9ac7d11c25934ef0be20d8e1e9a34e60ace89be6
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
19     pcorr
20     {
21         solver           CG;
22         preconditioner   Cholesky;
24         minIter          0;
25         maxIter          1000;
26         tolerance        1e-08;
27         relTol           0.01;
28     }
30     pd
31     {
32         solver           CG;
33         preconditioner   Cholesky;
35         minIter          0;
36         maxIter          1000;
37         tolerance        1e-08;
38         relTol           0.01;
39     }
41     pdFinal
42     {
43         solver           CG;
44         preconditioner   Cholesky;
46         minIter          0;
47         maxIter          1000;
48         tolerance        1e-08;
49         relTol           0.0;
50     }
52     U
53     {
54         solver           BiCGStab;
55         preconditioner   ILU0;
57         minIter          0;
58         maxIter          100;
59         tolerance        1e-08;
60         relTol           0;
61     }
63     alpha1
64     {
65         solver           BiCGStab;
66         preconditioner   ILU0;
68         minIter          0;
69         maxIter          100;
70         tolerance        1e-08;
71         relTol           0;
72     }
75 PISO
77     cAlpha          1;
80 PIMPLE
82     nOuterCorrectors 2;
83     nCorrectors     6;
84     nNonOrthogonalCorrectors 0;
86     pdRefPoint      (-0.9 1.4 0.05);
87     pdRefValue      0;
89     pRefPoint      (-0.9 1.4 0.05);
90     pRefValue      0;
92     limitMagU      35;
95 relaxationFactors
97     U          0.9;
98     pd         0.8;
101 // ************************************************************************* //