Fix tutorials: surfaceTracking/surfactantFoam/sphereTransport: fix system/faSolution
[OpenFOAM-1.6-ext.git] / tutorials / coupled / conjugateHeatFoam / conjugateCavity / system / fvSolution
blobacba539a4d939e70375fbbd9fe0976656eb38c1c
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 PCG
22     {
23         preconditioner   DIC;
24         tolerance        1e-06;
25         relTol           0;
26     };
28     U PBiCG
29     {
30         preconditioner   DILU;
31         tolerance        1e-05;
32         relTol           0;
33     };
35     T+T BiCG
36     {
37         preconditioner
38         {
39             type                Cholesky;
40         }
42         minIter      0;
43         maxIter      1000;
44         tolerance    1e-6;
45         relTol       0.0;
46     };
49 PISO
51     nCorrectors     2;
52     nNonOrthogonalCorrectors 0;
53     pRefCell        0;
54     pRefValue       0;
58 // ************************************************************************* //