ENH: settings.(c)sh: added checking on SGIMPI MPI_ROOT
[OpenFOAM-2.0.x.git] / tutorials / lagrangian / reactingParcelFoam / evaporationTest / system / fvSolution
blob1bbbbc0e5a90b2e27f7cfdafdd624907885d8b7e
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.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.1;
26     }
28     rhoFinal
29     {
30         $rho;
31         tolerance       1e-05;
32         relTol          0;
33     }
35     "(U|hs)"
36     {
37         solver          PBiCG;
38         preconditioner  DILU;
39         tolerance       1e-05;
40         relTol          0.1;
41     }
43     p
44     {
45         solver          PCG;
46         preconditioner  DIC;
47         tolerance       1e-06;
48         relTol          0.1;
49     }
51     pFinal
52     {
53         $p;
54         tolerance       1e-06;
55         relTol          0;
56     }
58     "(U|hs)Final"
59     {
60         $U;
61         tolerance       1e-05;
62         relTol          0;
63     }
65     "(k|epsilon)"
66     {
67         $UFinal;
68     }
70     "(Yi|O2|N2|H2O)"
71     {
72         $UFinal;
73     }
76 PIMPLE
78     transonic       no;
79     nCorrectors     2;
80     nNonOrthogonalCorrectors 0;
81     momentumPredictor yes;
84 relaxationFactors
86     ".*Final"       1;
89 // ************************************************************************* //