Transferred copyright to the OpenFOAM Foundation
[OpenFOAM-2.0.x.git] / tutorials / incompressible / SRFPimpleFoam / rotor2D / system / fvSolution
blob3176e0b66a0193d9bdcf884479533e5d810295f1
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
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     "Urel.*"        1;
78     "k.*"           1;
79     "epsilon.*"     1;
83 // ************************************************************************* //