Upgrade case file headers
[foam-extend-3.2.git] / tutorials / incompressible / boundaryFoam / boundaryTwoWallsFlowSolution / system / fvSolution
blobb7d96826b25e3626c5c98d109852f684585910e0
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     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 // ************************************************************************* //