Remove trailing whitespace systematically
[foam-extend-3.2.git] / tutorials / incompressible / MRFSimpleFoam / axialTurbine / system / fvSolution_ggi
blob020f8a7c8da8ba813ca05611a33474cdcd36c670
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.1                                |
5 |   \\  /    A nd           | Web:         http://www.extend-project.de       |
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-8;
23         relTol           0.05;
25         smoother         GaussSeidel;
27         cacheAgglomeration true;
29         nCellsInCoarsestLevel 20;
30         agglomerator     faceAreaPair;
31         mergeLevels      1;
32     }
34     U
35     {
36         solver           smoothSolver;
37         smoother         GaussSeidel;
38         nSweeps          2;
39         tolerance        1e-7;
40         relTol           0.1;
41     }
43     k
44     {
45         solver           smoothSolver;
46         smoother         GaussSeidel;
47         nSweeps          2;
48         tolerance        1e-7;
49         relTol           0.1;
50     }
52     epsilon
53     {
54         solver           smoothSolver;
55         smoother         GaussSeidel;
56         nSweeps          2;
57         tolerance        1e-7;
58         relTol           0.1;
59     }
62 SIMPLE
64     nNonOrthogonalCorrectors 0;
65     pRefCell 0;
66     pRefValue 0;
69 relaxationFactors
71     p               0.3;
72     U               0.5;
73     k               0.5;
74     epsilon         0.5;
77 // ************************************************************************* //