Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / incompressible / pimpleDyMFoam / wingMotion / wingMotion2D_simpleFoam / system / fvSolution
bloba05119968662d62130ed72c0e5a8aaee2618c9fd
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           GAMG;
22         tolerance        1e-7;
23         relTol           0.1;
24         smoother         GaussSeidel;
25         nPreSweeps       0;
26         nPostSweeps      2;
27         cacheAgglomeration on;
28         agglomerator     faceAreaPair;
29         nCellsInCoarsestLevel 10;
30         mergeLevels      1;
31     }
33     U
34     {
35         solver           smoothSolver;
36         smoother         GaussSeidel;
37         tolerance        1e-8;
38         relTol           0.1;
39         nSweeps          1;
40     }
42     k
43     {
44         solver           smoothSolver;
45         smoother         GaussSeidel;
46         tolerance        1e-8;
47         relTol           0.1;
48         nSweeps          1;
49     }
51     omega
52     {
53         solver           smoothSolver;
54         smoother         GaussSeidel;
55         tolerance        1e-8;
56         relTol           0.1;
57         nSweeps          1;
58     }
61 SIMPLE
63     nNonOrthogonalCorrectors 0;
66 relaxationFactors
68     p               0.3;
69     U               0.7;
70     k               0.7;
71     omega           0.7;
74 cache
76     grad(U);
79 // ************************************************************************* //