Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / incompressible / pUCoupledFoam / cavity / system / fvSolution
blobd8402224fdbd7b8791166140f65a291962c69a93
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     Up
20     {
21         solver BiCGStab;
22         preconditioner Cholesky;
24         tolerance 1e-09;
25         relTol  0.0;
27         minIter 1;
28         maxIter 500;
29     }
31 //     Up
32 //     {
33 //         solver          AMG;
34 //         cycle           V-cycle;
35 //         coarseningType  AAMG;
36 //         norm            componentNorm;
37 //         normComponent   0;
39 //         nPreSweeps      4;
40 //         nPostSweeps     4;
41 //         groupSize       2;
42 //         minCoarseEqns   4;
43 //         nMaxLevels      10;
44 //         scale           on;
45 //         fineSmoother    ILU;
46 //         coarseSmoother k ILU;
48 //         minIter         0;
49 //         maxIter         100;
50 //         tolerance       1e-7;
51 //         relTol          0.01;
52 //     }
54     // Segregated
55     p
56     {
57         solver           CG;
58         preconditioner   DIC;
59         tolerance        1e-06;
60         relTol           0;
61     }
62     U
63     {
64         solver           BiCGStab;
65         preconditioner   DILU;
66         tolerance        1e-05;
67         relTol           0;
68     }
71 blockSolver
73     convergence 1e-6;
75     pRefCell 0;
76     pRefValue 0;
79 fieldBounds
81     U      500;
82     p      -5e4 5e4;
85 relaxationFactors
87     U   0.999;
90 // ************************************************************************* //