BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / combustion / engineFoam / kivaTest / system / fvSchemes
blob04bc225fc9fed7a08a2fac25e6cab691d6495c00
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     location    "system";
14     object      fvSchemes;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 ddtSchemes
20     default         Euler;
23 gradSchemes
25     default         Gauss linear;
28 divSchemes
30     default         none;
31     div(phi,U)      Gauss upwind;
32     div(phid,p)     Gauss upwind;
33     div(phiU,p)     Gauss linear;
34     div(phi,k)      Gauss upwind;
35     div(phi,epsilon) Gauss upwind;
36     div(phi,R)      Gauss upwind;
37     div(R)          Gauss linear;
38     div(phiXi,Xi)   Gauss upwind;
39     div(phiXi,Su)   Gauss upwind;
40     div(phiSt,b)    Gauss limitedLinear01 1;
41     div(phi,ft_b_h_hu) Gauss multivariateSelection
42     {
43         fu limitedLinear01 1;
44         ft limitedLinear01 1;
45         b limitedLinear01 1;
46         h limitedLinear 1;
47         hu limitedLinear 1;
48     };
49     div(U)          Gauss linear;
50     div((Su*grad(b))) Gauss linear;
51     div((U+((Su*Xi)*grad(b)))) Gauss linear;
52     div((muEff*dev2(T(grad(U))))) Gauss linear;
55 laplacianSchemes
57     default         none;
58     laplacian(muEff,U) Gauss linear corrected;
59     laplacian(DkEff,k) Gauss linear limited 0.5;
60     laplacian(DepsilonEff,epsilon) Gauss linear limited 0.5;
61     laplacian(DREff,R) Gauss linear limited 0.5;
62     laplacian((rho*(1|A(U))),p) Gauss linear limited 0.5;
63     laplacian(alphaEff,b) Gauss linear limited 0.5;
64     laplacian(muEff,ft) Gauss linear limited 0.5;
65     laplacian(alphaEff,h) Gauss linear limited 0.5;
66     laplacian(alphaEff,hu) Gauss linear limited 0.5;
67     laplacian(alphaEff,ft) Gauss linear limited 0.5;
70 interpolationSchemes
72     default         linear;
75 snGradSchemes
77     default         limited 0.5;
80 fluxRequired
82     default         no;
83     p               ;
87 // ************************************************************************* //