STYLE: miss-aligned Headers
[foam-extend-3.2.git] / tutorials / coupled / conjugateHeatSimpleFoam / conjugateCavity / system / fvSolution
blob0bd3d91e7ecdd7b38a5e37c9f9f381acaebbcc1f
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     U
31     {
32         solver           PBiCG;
33         preconditioner   DILU;
35         minIter          1;
36         maxIter          1000;
37         tolerance        1e-25;
38         relTol           0.01;
39     };
41     T+T
42     {
43         solver           BiCG;
44         preconditioner   Cholesky;
46         minIter          0;
47         maxIter          1000;
48         tolerance        1e-25;
49         relTol           0.1;
50     };
52     G
53     {
54         solver           PCG;
55         preconditioner   DIC;
57         minIter          1;
58         maxIter          1000;
59         tolerance        1e-25;
60         relTol           0.1;
61     };
63     epsilon
64     {
65         solver           PBiCG;
66         preconditioner   DILU;
68         minIter          1;
69         maxIter          100;
70         tolerance        1e-25;
71         relTol           0.01;
72     };
74     k
75     {
76         solver           PBiCG;
77         preconditioner   DILU;
79         minIter          1;
80         maxIter          100;
81         tolerance        1e-25;
82         relTol           0.01;
83     };
86 SIMPLE
88     nNonOrthogonalCorrectors 0;
89     p_rghRefCell        0;
90     p_rghRefValue       0;
93 relaxationFactors
95     p_rgh           0.7;
96     U               0.3;
97     T               0.5;
98     k               0.6;
99     epsilon         0.6;
102 // ************************************************************************* //