Bugfix: single precision compilation fix
[foam-extend-3.2.git] / tutorials / compressible / steadyCompressibleFoam / transonicBump / system / fvSolution
blob5a67d8053dea07edb20f44bf38a3ff9311b38f75
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     // Coupled
20     Up
21     {
22         solver BiCGStab;
23         preconditioner Cholesky;
25         tolerance 1e-09;
26         relTol  0.0;
28         minIter 1;
29         maxIter 500;
30     }
32     // Segregated
33     p
34     {
35         solver           BiCGStab;
36         preconditioner   DILU;
38         minIter          0;
39         maxIter          1000;
40         tolerance        1e-8;
41         relTol           0.0;
42     }
43     U
44     {
45         solver           BiCGStab;
46         preconditioner   DILU;
48         minIter           0;
49         maxIter           1000;
50         tolerance        1e-8;
51         relTol           0.0;
52     }
54     h
55     {
56         solver           BiCGStab;
57         preconditioner   DILU;
59         minIter           0;
60         maxIter           1000;
61         tolerance        1e-8;
62         relTol           0.0;
63     }
66 PIMPLE
68     nOuterCorrectors         1;
69     nCorrectors              3;
70     nNonOrthogonalCorrectors 0;
73 relaxationFactors
75     // Note: under-relaxation factors used in wave-transmissive schemes
76     U               0.1;
77     p               0.25;
78     h               0.1;
79     rho             0.5;
80     T               0.5;
83 fieldBounds
85     // With bounding
86     p     5e4    3e5;
87     T     230    500;
88     U     500;
91 // ************************************************************************* //