initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / compressible / rhoPimpleFoam / angledDuct / system / fvSolution
blob583c3637aa6c42d8d548ef44bc09b0900cc2561d
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     location    "system";
14     object      fvSolution;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 solvers
20     rho
21     {
22         solver          PCG;
23         preconditioner  DIC;
24         tolerance       1e-05;
25         relTol          0;
26     }
28     U
29     {
30         solver          PBiCG;
31         preconditioner  DILU;
32         tolerance       1e-05;
33         relTol          0.1;
34     }
36     UFinal
37     {
38         solver          PBiCG;
39         preconditioner  DILU;
40         tolerance       1e-05;
41         relTol          0;
42     }
44     p
45     {
46         solver          PCG;
47         preconditioner  DIC;
48         tolerance       1e-06;
49         relTol          0.01;
50     }
52     pFinal
53     {
54         solver          PCG;
55         preconditioner  DIC;
56         tolerance       1e-06;
57         relTol          0;
58     }
60     h
61     {
62         solver          PBiCG;
63         preconditioner  DILU;
64         tolerance       1e-05;
65         relTol          0.1;
66     }
68     hFinal
69     {
70         solver          PBiCG;
71         preconditioner  DILU;
72         tolerance       1e-05;
73         relTol          0;
74     }
76     R
77     {
78         solver          PBiCG;
79         preconditioner  DILU;
80         tolerance       1e-05;
81         relTol          0;
82     }
84     k
85     {
86         solver          PBiCG;
87         preconditioner  DILU;
88         tolerance       1e-05;
89         relTol          0;
90     }
92     epsilon
93     {
94         solver          PBiCG;
95         preconditioner  DILU;
96         tolerance       1e-05;
97         relTol          0;
98     }
100     omega
101     {
102         solver          PBiCG;
103         preconditioner  DILU;
104         tolerance       1e-05;
105         relTol          0;
106     }
109 PIMPLE
111     nOuterCorrectors 50;
112     nCorrectors     1;
113     nNonOrthogonalCorrectors 0;
114     momentumPredictor yes;
115     pMin            pMin [ 1 -1 -2 0 0 0 0 ] 1000;
118 relaxationFactors
120     U               0.7;
121     p               0.3;
122     rho             0.05;
123     h               0.7;
124     k               0.7;
125     omega           0.7;
129 // ************************************************************************* //