merged conjugateCavity (still with weird fvSolution syntax)
[openfoam-extend-OpenFOAM-1.6-ext.git] / tutorials / coupled / conjugateHeatFoam / conjugateCavity / system / fvSolution
blob84d091e8356cfa211fc379837c05fdd951c50dea
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.5-dev                               |
5 |   \\  /    A nd           | Web:      http://www.openfoam.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
9 FoamFile
11     version         2.0;
12     format          ascii;
13     class           dictionary;
14     object          fvSolution;
17 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
19 solvers
21     p
22     {
23         solver           PCG;
24         preconditioner   DIC;
25         tolerance        1e-06;
26         relTol           0;
27     };
29     U
30     {
31         solver           PBiCG;
32         preconditioner   DILU;
33         tolerance        1e-05;
34         relTol           0;
35     };
37     T+T 
38     {
39         solver           BiCG;
40         preconditioner
41         {
42             preconditioner       Cholesky;
43         }
45         minIter          0;
46         maxIter          1000;
47         tolerance        1e-6;
48         relTol           0.0;
49     };
52 PISO
54     nCorrectors     2;
55     nNonOrthogonalCorrectors 0;
56     pRefCell        0;
57     pRefValue       0;
61 // ************************************************************************* //