Build instructions update: Cesare Guardino
[foam-extend-3.2.git] / tutorials / incompressible / porousSimpleFoam / angledDuctImplicit / system / fvSolution
blobdf6273f3abd3675ed9ee44d1a0fbce4afa398877
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     "(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 // ************************************************************************* //