Upgrade case file headers
[foam-extend-3.2.git] / tutorials / compressible / steadyCompressibleMRFFoam / simpleRotorStator / system / fvSolution
blob604eeda296e20b902d394067d8576643607c656f
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           BiCGStab;
22         preconditioner   DILU;
24         minIter          0;
25         maxIter          1000;
26         tolerance        1e-8;
27         relTol           0.01;
28     }
29     U
30     {
31         solver           BiCGStab;
32         preconditioner   DILU;
34         minIter           0;
35         maxIter           1000;
36         tolerance        1e-8;
37         relTol           0.01;
38     }
39     i
40     {
41         solver           BiCGStab;
42         preconditioner   DILU;
44         minIter          0;
45         maxIter          1000;
46         tolerance        1e-8;
47         relTol           0.01;
48     }
49     k
50     {
51         solver           BiCGStab;
52         preconditioner   DILU;
54         minIter          0;
55         maxIter          1000;
56         tolerance        1e-8;
57         relTol           0.0;
58     }
59     epsilon
60     {
61         solver           BiCGStab;
62         preconditioner   DILU;
64         minIter          0;
65         maxIter          1000;
66         tolerance        1e-8;
67         relTol           0.0;
68     }
71 PIMPLE
73     nOuterCorrectors         1;
74     nCorrectors              2;
75     nNonOrthogonalCorrectors 0;
78 relaxationFactors
80     // Note: under-relaxation factors used in wave-transmissive schemes
81     U               0.5;
82     p               0.2;
83     i               0.1;
84     h               0.5;
85     rho             0.25;
87     k               0.2;
88     epsilon         0.2;
91 fieldBounds
93     // With bounding
94     p      2e4     1e6;
95     T      200     500;
96     U      500;
99 // ************************************************************************* //