fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / compressible / rhoPorousSimpleFoam / angledDuctExplicit / system / fvSolution
blob9a29fda7cf5f61707da2ac5785c0ef47a81fc999
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM Extend Project: Open Source CFD        |
4 |  \\    /   O peration     | Version:  1.6-ext                               |
5 |   \\  /    A nd           | Web:      www.extend-project.de                 |
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;
23         tolerance       1e-08;
24         relTol          0.05;
25         smoother        GaussSeidel;
26         cacheAgglomeration off;
27         nCellsInCoarsestLevel 20;
28         agglomerator    faceAreaPair;
29         mergeLevels     1;
30     }
32     U
33     {
34         solver          smoothSolver;
35         smoother        GaussSeidel;
36         nSweeps         2;
37         tolerance       1e-06;
38         relTol          0.1;
39     }
41     h
42     {
43         solver          PBiCG;
44         preconditioner  DILU;
45         tolerance       1e-06;
46         relTol          0.1;
47     }
49     k
50     {
51         solver          smoothSolver;
52         smoother        GaussSeidel;
53         nSweeps         2;
54         tolerance       1e-07;
55         relTol          0.1;
56     }
58     epsilon
59     {
60         solver          smoothSolver;
61         smoother        GaussSeidel;
62         nSweeps         2;
63         tolerance       1e-07;
64         relTol          0.1;
65     }
68 SIMPLE
70     nNonOrthogonalCorrectors 0;
71     pMin            pMin [ 1 -1 -2 0 0 0 0 ] 100;
74 relaxationFactors
76     p               0.3;
77     rho             0.05;
78     U               0.7;
79     k               0.7;
80     epsilon         0.7;
81     h               0.5;
84 // ************************************************************************* //