ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / tutorials / incompressible / simpleFoam / airFoil2D / system / fvSolution
blobef7321e2e24dcd78ac5a972a8eaf6a5cde216982
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.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     p
21     {
22         solver          GAMG;
23         tolerance       1e-06;
24         relTol          0.1;
25         smoother        GaussSeidel;
26         nPreSweeps      0;
27         nPostSweeps     2;
28         cacheAgglomeration true;
29         nCellsInCoarsestLevel 10;
30         agglomerator    faceAreaPair;
31         mergeLevels     1;
32     }
34     U
35     {
36         solver          smoothSolver;
37         smoother        GaussSeidel;
38         nSweeps         2;
39         tolerance       1e-08;
40         relTol          0.1;
41     }
43     nuTilda
44     {
45         solver          smoothSolver;
46         smoother        GaussSeidel;
47         nSweeps         2;
48         tolerance       1e-08;
49         relTol          0.1;
50     }
53 SIMPLE
55     nNonOrthogonalCorrectors 0;
56     pRefCell        0;
57     pRefValue       0;
59     residualControl
60     {
61         p               1e-5;
62         U               1e-5;
63         nuTilda         1e-5;
64     }
67 relaxationFactors
69     default         0;
70     p               0.3;
71     U               0.7;
72     nuTilda         0.7;
76 // ************************************************************************* //