initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / tutorials / solidDisplacementFoam / plateHole / system / fvSolution
blob322eae255971126c2f65dcb06da72a6e1364e40b
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     D GAMG
20     {
21         tolerance        1e-06;
22         relTol           0.9;
24         smoother         GaussSeidel;
26         cacheAgglomeration true;
28         nCellsInCoarsestLevel 20;
30         agglomerator     faceAreaPair;
31         mergeLevels      1;
32     };
34     T GAMG
35     {
36         tolerance        1e-06;
37         relTol           0.9;
39         smoother         GaussSeidel;
41         cacheAgglomeration true;
43         nCellsInCoarsestLevel 20;
45         agglomerator     faceAreaPair;
46         mergeLevels      1;
47     };
50 stressAnalysis
52     compactNormalStress yes;
53     nCorrectors     1;
54     D               1e-06;
57 // ************************************************************************* //