Merging Martin's tutorial fixes
[openfoam-extend-OpenFOAM-1.6-ext.git] / tutorials / coupled / coupledSwirlTest / system / fvSolution
blob28f6c7998df5f1b3072d803457f1c04d10a6157a
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;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 solvers
20 //     T
21 //     {
22 //         solver           PBiCG;
23 //         preconditioner   DILU;
24 //         tolerance        1e-09;
25 //         relTol           0.01;
26 //     };
28 //     Ts
29 //     {
30 //         solver           PCG;
31 //         preconditioner   DILU;
32 //         tolerance        1e-09;
33 //         relTol           0.01;
34 //     };
36     blockVar
37     {
38         solver           BiCGStab;
40         preconditioner
41         {
42             preconditioner Cholesky;
43         }
45         tolerance        1e-09;
46         relTol           0.01;
48         minIter          1;
49         maxIter          1000;
50     };
53 SIMPLE
55     nNonOrthogonalCorrectors 0;
58 relaxationFactors
60     T    0.9;
61     Ts   0.9;
65 // ************************************************************************* //