STYLE: miss-aligned Headers
[foam-extend-3.2.git] / tutorials / incompressible / boundaryFoam / boundaryLaunderSharma / system / fvSolution
blobe601d9511e42bdb3f02c0ef5521417a1902c163e
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.0                                |
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     U PCG
20     {
21         preconditioner   DIC;
22         tolerance        1e-06;
23         relTol           0;
24     };
25     k PBiCG
26     {
27         preconditioner   DILU;
28         tolerance        1e-06;
29         relTol           0;
30     };
31     epsilon PBiCG
32     {
33         preconditioner   DILU;
34         tolerance        1e-06;
35         relTol           0;
36     };
37     R PBiCG
38     {
39         preconditioner   DILU;
40         tolerance        1e-06;
41         relTol           0;
42     };
43     nuTilda PBiCG
44     {
45         preconditioner   DILU;
46         tolerance        1e-06;
47         relTol           0;
48     };
51 PISO
53     nCorrectors     2;
54     nNonOrthogonalCorrectors 0;
57 relaxationFactors
59     U               0.5;
60     k               0.7;
61     epsilon         0.7;
62     R               0.7;
63     nuTilda         0.7;
66 // ************************************************************************* //