Fixed URL for libccmio-2.6.1 (bug report #5 by Thomas Oliveira)
[foam-extend-3.2.git] / tutorials / compressible / sonicFoam / ras / nacaAirfoil / system / fvSolution
blob251e355350ca0e0dedc38f44ebee795cb25d9bdd
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     location    "system";
14     object      fvSolution;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 solvers
20     rho
21     {}
23     p
24     {
25         solver          BiCGStab;
26         preconditioner  DILU;
28         minIter         1;
29         tolerance       1e-07;
30         relTol          0;
31     }
33     U
34     {
35         solver          BiCGStab;
36         preconditioner  DILU;
37         tolerance       1e-07;
38         relTol          0;
39     }
41     e
42     {
43         solver          BiCGStab;
44         preconditioner  DILU;
45         tolerance       1e-07;
46         relTol          0;
47     }
49     k
50     {
51         solver          BiCGStab;
52         preconditioner  DILU;
53         tolerance       1e-08;
54         relTol          0;
55     }
57     epsilon
58     {
59         solver          BiCGStab;
60         preconditioner  DILU;
61         tolerance       1e-08;
62         relTol          0;
63     }
65     R
66     {
67         solver          PBiCG;
68         preconditioner  DILU;
69         tolerance       1e-08;
70         relTol          0;
71     }
74 SIMPLE
76     nNonOrthogonalCorrectors 2;
79 PIMPLE
81     nOuterCorrectors 2;
82     nCorrectors      2;
83     nNonOrthogonalCorrectors 0;
86 relaxationFactors
88     U 0.8;
89     p 0.8;
90     e 0.8;
93 // ************************************************************************* //