ENH: patchCloud: return pTraits<Type>::max for unfound points
[OpenFOAM-1.7.x.git] / tutorials / incompressible / SRFPimpleFoam / rotor2D / system / fvSolution
blob86026ed8cd75c3a0bbc83844fce94c66d854064d
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      ascii;
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 true;
27         nCellsInCoarsestLevel 20;
28         agglomerator    faceAreaPair;
29         mergeLevels     1;
30     }
32     pFinal
33     {
34         $p;
35         relTol          0;
36     }
38     Urel
39     {
40         solver          smoothSolver;
41         smoother        GaussSeidel;
42         nSweeps         2;
43         tolerance       1e-07;
44         relTol          0.1;
45     }
47     k
48     {
49         solver          smoothSolver;
50         smoother        GaussSeidel;
51         nSweeps         2;
52         tolerance       1e-07;
53         relTol          0.1;
54     }
56     epsilon
57     {
58         solver          smoothSolver;
59         smoother        GaussSeidel;
60         nSweeps         2;
61         tolerance       1e-07;
62         relTol          0.1;
63     }
66 PIMPLE
68     nOuterCorrectors 1;
69     nCorrectors     2;
70     nNonOrthogonalCorrectors 0;
71     pRefCell        0;
72     pRefValue       0;
75 relaxationFactors
77     p               1;
78     Urel            1;
79     k               1;
80     epsilon         1;
84 // ************************************************************************* //