fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / incompressible / icoDyMFoam / mixerGgi / system / fvSolution
blob387f5aabf0cc9668e4bacb9cde8044be6f12bda0
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     pcorr
20     {
21         solver           BiCGStab;
22         preconditioner   DILU;
24         minIter          0;
25         maxIter          1000;
26         tolerance        1e-02;
27         relTol           0;
28     };
30     p
31     {
32         solver           CG;
33         preconditioner   Cholesky;
35         minIter          0;
36         maxIter          1000;
37         tolerance        1e-07;
38         relTol           0.0;
39     };
41     pFinal
42     {
43         solver           CG;
44         preconditioner   Cholesky;
46         minIter          0;
47         maxIter          1000;
48         tolerance        1e-07;
49         relTol           0;
50     };
52     U
53     {
54         solver            BiCGStab;
55         preconditioner    DILU;
57         minIter          0;
58         maxIter          1000;
59         tolerance        1e-07;
60         relTol           0;
61     };
64 PISO
66     nCorrectors     4;
67     nNonOrthogonalCorrectors 1;
68     pRefCell        0;
69     pRefValue       0;
72 // ************************************************************************* //