STYLE: miss-aligned Headers
[foam-extend-3.2.git] / tutorials / incompressible / porousSimpleFoam / angledDuctImplicit / system / fvSolution
blob85fedfb003aa1ebb6c88daf20f860554d5dbc6bb
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.0                                |
5 |   \\  /    A nd           | Web:         http://www.extend-project.de       |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      binary;
12     class       dictionary;
13     location    "system";
14     object      fvSolution;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 solvers
20     p
21     {
22         solver          GAMG;
23         tolerance       1e-08;
24         relTol          0.05;
25         smoother        GaussSeidel;
26         cacheAgglomeration off;
27         nCellsInCoarsestLevel 20;
28         agglomerator    faceAreaPair;
29         mergeLevels     1;
30     }
32     "(k|epsilon)"
33     {
34         solver          smoothSolver;
35         smoother        GaussSeidel;
36         nSweeps         2;
37         tolerance       1e-07;
38         relTol          0.1;
39     }
42 SIMPLE
44     nUCorrectors    2;
45     nNonOrthogonalCorrectors 0;
48 relaxationFactors
50     p               0.3;
51     U               0.7;
52     k               0.9;
53     epsilon         0.9;
56 // ************************************************************************* //