Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / incompressible / simpleFoam / pitzDailyExptInlet / system / fvSolution
blob067c9af40f5ca0ad255cb35d17dd67cada03256d
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
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     p
21     {
22         solver          PCG;
23         preconditioner  DIC;
24         tolerance       1e-06;
25         relTol          0.01;
26     }
28     U
29     {
30         solver          PBiCG;
31         preconditioner  DILU;
32         tolerance       1e-05;
33         relTol          0.1;
34     }
36     k
37     {
38         solver          PBiCG;
39         preconditioner  DILU;
40         tolerance       1e-05;
41         relTol          0.1;
42     }
44     epsilon
45     {
46         solver          PBiCG;
47         preconditioner  DILU;
48         tolerance       1e-05;
49         relTol          0.1;
50     }
52     R
53     {
54         solver          PBiCG;
55         preconditioner  DILU;
56         tolerance       1e-05;
57         relTol          0.1;
58     }
60     nuTilda
61     {
62         solver          PBiCG;
63         preconditioner  DILU;
64         tolerance       1e-05;
65         relTol          0.1;
66     }
69 SIMPLE
71     nNonOrthogonalCorrectors 0;
73     residualControl
74     {
75         p               1e-2;
76         U               1e-3;
77         "(k|epsilon|omega)" 1e-3;
78     }
81 relaxationFactors
83     p               0.3;
84     U               0.7;
85     k               0.7;
86     epsilon         0.7;
87     R               0.7;
88     nuTilda         0.7;
92 // ************************************************************************* //