intersection with triangle plane for miss
[OpenFOAM-1.5.x.git] / tutorials / chtMultiRegionFoam / multiRegionHeater / system / fvSolution
blobe82c183b187df77db5517db828757c0beec3c890
1 /*---------------------------------------------------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.4                                   |
5 |   \\  /    A nd           | Web:      http://www.openfoam.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
9 FoamFile
11     version         2.0;
12     format          ascii;
14     root            "";
15     case            "";
16     instance        "";
17     local           "";
19     class           dictionary;
20     object          fvSolution;
23 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
25 solvers
27     rho PCG
28     {
29         preconditioner   DIC;
30         tolerance        1e-6;
31         relTol           0;
32     };
33 //    pd PCG
34 //    {
35 //        preconditioner   DIC;
36 //        tolerance        1e-6;
37 //        relTol           0.1;
38 //    };
39 //    pdFinal PCG
40 //    {
41 //        preconditioner   DIC;
42 //        tolerance        1e-08;
43 //        relTol           0;
44 //    };
45     pd GAMG
46     {
47         tolerance        1e-6;
48         relTol           0.1;
50         smoother         GaussSeidel;
52         cacheAgglomeration true;
53         nCellsInCoarsestLevel 10;
54         agglomerator     faceAreaPair;
55         mergeLevels      1;
56     };
57     pdFinal GAMG
58     {
59         tolerance        1e-6;
60         relTol           0;
62         smoother         GaussSeidel;
64         cacheAgglomeration true;
65         nCellsInCoarsestLevel 10;
66         agglomerator     faceAreaPair;
67         mergeLevels      1;
68     };
69     U PBiCG
70     {
71         preconditioner   DILU;
72         tolerance        1e-08;
73         relTol           0;
74     };
75     h PBiCG
76     {
77         preconditioner   DILU;
78         tolerance        1e-06;
79         relTol           0;
80     };
81     k PBiCG
82     {
83         preconditioner   DILU;
84         tolerance        1e-06;
85         relTol           0;
86     };
87     epsilon PBiCG
88     {
89         preconditioner   DILU;
90         tolerance        1e-06;
91         relTol           0;
92     };
93     R PBiCG
94     {
95         preconditioner   DILU;
96         tolerance        1e-06;
97         relTol           0;
98     };
101 PISO
103     momentumPredictor   off;
104     nOuterCorrectors     1;
105     nCorrectors     2;
106     nNonOrthogonalCorrectors 1;
107     pdRefCell        0;
108     pdRefValue       0;
111 //relaxationFactors
113 ////    h               0.9;
114 //    U               0.9;
118 // ************************************************************************* //