Build instructions update: Cesare Guardino
[foam-extend-3.2.git] / tutorials / incompressible / porousSimpleFoam / angledDuctExplicit / system / fvSolution
blobfd89b5b4e6b6c30b3b11384929005164dc6fc6ef
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      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     U
33     {
34         solver          smoothSolver;
35         smoother        GaussSeidel;
36         nSweeps         2;
37         tolerance       1e-06;
38         relTol          0.1;
39     }
41     "(k|epsilon)"
42     {
43         solver          smoothSolver;
44         smoother        GaussSeidel;
45         nSweeps         2;
46         tolerance       1e-07;
47         relTol          0.1;
48     }
51 SIMPLE
53     nNonOrthogonalCorrectors 0;
56 relaxationFactors
58     p               0.3;
59     U               0.7;
60     k               0.9;
61     epsilon         0.9;
64 // ************************************************************************* //