fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / incompressible / boundaryFoam / boundaryTwoWallsFlowSolution / system / fvSolution
blob53dbe5b20efa36ccf4132344a7af62bc3cd13b6b
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     object      fvSolution;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 solvers
19     // Solver for the U equation
20     U               ICCG 1e-12 0;
21     // Solver for the k equation
22     k               BICCG 1e-06 0;
23     // Solver for the epsilon equation
24     epsilon         BICCG 1e-06 0;
25     // Solver for the R equation
26     R               BICCG 1e-06 0;
27     // Solver for the nuTilda equation
28     nuTilda         BICCG 1e-06 0;
31 PISO
33     // Number of PISO correctors
34     nCorrectors     2;
35     // Number of non-orthogonal correctors
36     nNonOrthogonalCorrectors 0;
37     // momentumPredictor?
38     momentumPredictor yes;
39     // fluxGradp?
40     fluxGradp       no;
43 relaxationFactors
45     // U
46     U               0.1;
47     // k
48     k               0.7;
49     // epsilon
50     epsilon         0.7;
51     // R
52     R               0.7;
53     // nuTilda
54     nuTilda         0.7;
57 // ************************************************************************* //