Remove trailing whitespace systematically
[foam-extend-3.2.git] / tutorials / incompressible / simpleFoam / mixingPlaneDomADomB / system / fvSolution
blob7fc2830582fd21c723166c766d2161a169765f05
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.1                                |
5 |   \\  /    A nd           | Web:         http://www.extend-project.de       |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      fvSolution;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 solvers
19     p
20     {
21         solver CG;
22         preconditioner   Cholesky;
24         minIter          0;
25         maxIter          1000;
26         tolerance        1e-07;
27         relTol           0.01;
28     }
30     U
31     {
32         solver           BiCGStab;
33         preconditioner   DILU;
35         minIter          0;
36         maxIter          1000;
37         tolerance        1e-07;
38         relTol           0;
39     }
41     epsilon
42     {
43         solver           BiCGStab;
44         preconditioner   DILU;
46         minIter          0;
47         maxIter          1000;
48         tolerance        1e-07;
49         relTol           0;
50     }
52     k
53     {
54         solver           BiCGStab;
55         preconditioner   DILU;
57         minIter          0;
58         maxIter          1000;
59         tolerance        1e-07;
60         relTol           0;
61     }
64 SIMPLE
66     nNonOrthogonalCorrectors 1;
67     pRefCell 0;
68     pRefValue 0;
69     convergence 1e-5;
72 relaxationFactors
74     p               0.3;
75     U               0.7;
76     k               0.7;
77     epsilon         0.7;
80 // ************************************************************************* //