Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / incompressible / pUCoupledFoam / backwardFacingStepTurbulent / system / fvSolution
blob51f7d257acd4c3cec18fbf7f5d9a077d079bc993
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      2;
40 //         nPostSweeps     2;
41 //         groupSize       2;
42 //         minCoarseEqns   4;
43 //         nMaxLevels      100;
44 //         scale           on;
45 //         fineSmoother    ILU;
46 //         coarseSmoother k ILU;
48 //         minIter         0;
49 //         maxIter         100;
50 //         tolerance       1e-7;
51 //         relTol          0.001;
52 //     }
54     // Segregated
55     p
56     {
57         solver           PCG;
58         preconditioner   DIC;
59         tolerance        1e-06;
60         relTol           0.01;
61     }
62     U
63     {
64         solver           PBiCG;
65         preconditioner   DILU;
66         tolerance        1e-07;
67         relTol           0.1;
68     }
69     k
70     {
71         solver           PBiCG;
72         preconditioner   DILU;
73         tolerance        1e-07;
74         relTol           0.01;
75     }
76     epsilon
77     {
78         solver           PBiCG;
79         preconditioner   DILU;
80         tolerance        1e-07;
81         relTol           0.01;
82     }
85 blockSolver
87     convergence 1e-6;
90 relaxationFactors
92     U               0.95;
93     k               0.9;
94     epsilon         0.9;
97 fieldBounds
99     U      500;
100     p      -5e4 5e4;
103 SIMPLE
105     nNonOrthoCorrectors 0;
108 // SIMPLE
109 // relaxationFactors
110 // {
111 //     p               0.3;
112 //     U               0.7;
113 //     k               0.7;
114 //     epsilon         0.7;
115 // }
117 // ************************************************************************* //