ENH: patchCloud: return pTraits<Type>::max for unfound points
[OpenFOAM-1.7.x.git] / tutorials / incompressible / porousSimpleFoam / angledDuctExplicit / system / fvSolution
blob4ea491db3cfc37608ff9337357245c289fdbdd51
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.7.1                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
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;
65 // ************************************************************************* //