Upgrade case file headers
[foam-extend-3.2.git] / tutorials / multiphase / interMixingFoam / laminar / damBreak / system / fvSolution
blobf3414e879e1175efa69e0daf6ca76ff4cf1cdf64
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     "alpha."
21     {
22         solver          smoothSolver;
23         smoother        GaussSeidel;
24         tolerance       1e-06;
25         relTol          0;
26         nSweeps         1;
27     }
29     pcorr
30     {
31         solver          PCG;
32         preconditioner  DIC;
33         tolerance       1e-10;
34         relTol          0;
35     }
37     pd
38     {
39         solver          PCG;
40         preconditioner  DIC;
41         tolerance       1e-07;
42         relTol          0.05;
43     }
45     pdFinal
46     {
47         solver          PCG;
48         preconditioner  DIC;
49         tolerance       1e-07;
50         relTol          0;
51     }
53     U
54     {
55         solver          PBiCG;
56         preconditioner  DILU;
57         tolerance       1e-06;
58         relTol          0;
59     }
62 PISO
64     momentumPredictor no;
65     nCorrectors     3;
66     nNonOrthogonalCorrectors 0;
67     nAlphaCorr      1;
68     nAlphaSubCycles 2;
69     cAlpha          1;
72 // ************************************************************************* //