Bugfix: single precision compilation fix
[foam-extend-3.2.git] / tutorials / lagrangian / porousExplicitSourceReactingParcelFoam / parcelInBox / system / fvSolution
blob8ac226be6d0fd787b4f8ee492043ddbc5f05116d
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.2                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.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     p
21     {
22         solver           GAMG;
24         tolerance        0;
25         relTol           0.01;
27         smoother         DICGaussSeidel;
28         nPreSweeps       0;
29         nPostSweeps      2;
31         cacheAgglomeration true;
33         nCellsInCoarsestLevel 10;
34         agglomerator     faceAreaPair;
35         mergeLevels      1;
37         maxIter          100;
38     };
39     pFinal
40     {
41         $p
42         tolerance        1e-6;
43         relTol           0;
44     };
45     "(rho|G)"
46     {
47         solver          PCG;
48         preconditioner  DIC;
49         tolerance       1e-06;
50         relTol          0;
51     };
52     "(Yi|hs)"
53     {
54         solver          PBiCG;
55         preconditioner  DILU;
56         tolerance       1e-06;
57         relTol          0;
58     };
59     "(U|k|omega)"
60     {
61         solver          smoothSolver;
62         smoother        GaussSeidel;
63         tolerance       1e-06;
64         relTol          0;
65     };
68 PISO
70     nCorrectors     2;
71     nNonOrthogonalCorrectors 0;
72     momentumPredictor yes;
75 additional
77     dpdt            false;
78     eWork           true;
79     hWork           true;
82 // ************************************************************************* //