fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / stressAnalysis / solidDisplacementFoam / plateHole / system / fvSolution
blob500f1cb2ca890240b7cafe2953b098a0c549c224
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM Extend Project: Open Source CFD        |
4 |  \\    /   O peration     | Version:  1.6-ext                               |
5 |   \\  /    A nd           | Web:      www.extend-project.de                 |
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 // ************************************************************************* //