STYLE: miss-aligned Headers
[foam-extend-3.2.git] / tutorials / coupled / conjugateHeatFoam / conjugateCavity / system / fvSolution
blob30a835e084c11c8a1e53aa065adc77fd020381e6
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.0                                |
5 |   \\  /    A nd           | Web:         http://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     p_rgh
20     {
21         solver           PCG;
22         preconditioner   DIC;
24         minIter          0;
25         maxIter          1000;
26         tolerance        1e-25;
27         relTol           0.01;
28     };
30     p_rghFinal
31     {
32         solver           PCG;
33         preconditioner   DIC;
35         minIter          0;
36         maxIter          1000;
37         tolerance        1e-25;
38         relTol           0;
39     };
41     U
42     {
43         solver           PBiCG;
44         preconditioner   DILU;
46         minIter          1;
47         maxIter          1000;
48         tolerance        1e-25;
49         relTol           0.01;
50     };
52     T+T
53     {
54         solver           BiCG;
55         preconditioner   Cholesky;
57         minIter          0;
58         maxIter          1000;
59         tolerance        1e-25;
60         relTol           0.1;
61     };
63     G
64     {
65         solver           PCG;
66         preconditioner   DIC;
68         minIter          1;
69         maxIter          1000;
70         tolerance        1e-25;
71         relTol           0.1;
72     };
74     epsilon
75     {
76         solver           PBiCG;
77         preconditioner   DILU;
79         minIter          1;
80         maxIter          100;
81         tolerance        1e-25;
82         relTol           0.01;
83     };
85     k
86     {
87         solver           PBiCG;
88         preconditioner   DILU;
90         minIter          1;
91         maxIter          100;
92         tolerance        1e-25;
93         relTol           0.01;
94     };
97 PISO
99     nCorrectors         2;
100     nNonOrthogonalCorrectors 0;
101     p_rghRefCell        0;
102     p_rghRefValue       0;
105 relaxationFactors
109 // ************************************************************************* //