Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / immersedBoundary / cylinderInChannelFineIcoIbFoam / system / fvSolution
blob515d579590718bcead6cc6d27a6c0aff009fc101
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     p
20     {
21         solver          amgSolver;
22         cycle           W-cycle;
23         policy          PAMG;
24         nPreSweeps      2;
25         nPostSweeps     2;
26         groupSize       4;
27         minCoarseEqns   4;
28         nMaxLevels      100;
29         scale           on;
30         smoother        symGaussSeidel;
32         minIter         1;
33         maxIter         100;
34         tolerance       1e-7;
35         relTol          0.01;
36     }
38     U
39     {
40         solver           BiCGStab;
41         preconditioner   ILU0;
43         minIter          1;
44         maxIter          1000;
45         tolerance        1e-08;
46         relTol           0;
47     }
50 SIMPLE
52     nNonOrthogonalCorrectors 5;
54     pRefPoint (0 -0.45 0.05);
55     pRefValue 0;
58 PIMPLE
60     nOuterCorrectors 1;
61     nCorrectors     4;
62     nNonOrthogonalCorrectors 0;
64     pRefPoint (0 -0.45 0.05);
65     pRefValue 0;
68 // ************************************************************************* //