initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / tutorials / rasCavitatingFoam / throttle / system / fvSolution
blobf6bad1ada0bf1ca6bae8743af73b528278e0e658
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.5                                   |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      fvSolution;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 solvers
19     omega PBiCG
20     {
21         preconditioner   DILU;
22         tolerance        1e-08;
23         relTol           0;
24     };
26     k PBiCG
27     {
28         preconditioner   DILU;
29         tolerance        1e-08;
30         relTol           0;
31     };
33     rho PBiCG
34     {
35         preconditioner   DILU;
36         tolerance        1e-08;
37         relTol           0;
38     };
40     U PBiCG
41     {
42         preconditioner   DILU;
43         tolerance        1e-08;
44         relTol           0;
45     };
47     p GAMG
48     {
49         tolerance        1e-8;
50         relTol           0;
52         smoother         GaussSeidel;
53         nPreSweeps       0;
54         nPostSweeps      2;
56         cacheAgglomeration true;
58         nCellsInCoarsestLevel 10;
59         agglomerator     faceAreaPair;
60         mergeLevels      1;
61     };
64 PISO
66     nCorrectors                2;
67     nNonOrthogonalCorrectors   1;
69 //    removeSwirl                2;
72 SIMPLE
75 // ************************************************************************* //