Upgrade case file headers
[foam-extend-3.2.git] / tutorials / compressible / steadyCompressibleMRFFoam / bentRotorStator / system / fvSolution
blobcdf5c0fbe0d011dc75c3c6e3ec098435d394a4d0
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.001;
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.7;
82     p               1;
83     i               0.1;
84     rho             0.25;
86     k               0.5;
87     epsilon         0.5;
90 fieldBounds
92     // No bounding
93 //     p     0    1e7;
94 //     T     0    10000;
95 //     U     1e6;
97     // With bounding
98     p      2e4     1e6;
99     T      200     500;
100     U      500;
103 // ************************************************************************* //