Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / combustion / XiFoam / les / pitzDaily3D / system / fvSchemes
blob3e79255ae11c8f524ceae96d6bc4b071291381be
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.com                      |
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         backward;
23 gradSchemes
25     default         Gauss linear;
28 divSchemes
30     default         none;
31     div(phi,U)      Gauss linear;
32     div(phiU,p)     Gauss linear;
33     div(phi,k)      Gauss limitedLinear 0.1;
34     div(phiXi,Xi)   Gauss limitedLinear01 0.1;
35     div(phiXi,Su)   Gauss limitedLinear01 0.1;
36     div(phiSt,b)    Gauss limitedLinear01 0.1;
37     div(phi,ft_b_h_hu) Gauss multivariateSelection
38     {
39         ft limitedLinear01 0.1;
40         b limitedLinear01 0.1;
41         h limitedLinear 0.1;
42         hu limitedLinear 0.1;
43     };
44     div(U)          Gauss linear;
45     div((Su*grad(b))) Gauss linear;
46     div((U+((Su*Xi)*grad(b)))) Gauss linear;
47     div((muEff*dev2(T(grad(U))))) Gauss linear;
50 laplacianSchemes
52     default         none;
53     laplacian(muEff,U) Gauss linear corrected;
54     laplacian(DkEff,k) Gauss linear corrected;
55     laplacian(DBEff,B) Gauss linear corrected;
56     laplacian((rho*(1|A(U))),p) Gauss linear corrected;
57     laplacian(alphaEff,b) Gauss linear corrected;
58     laplacian(alphaEff,ft) Gauss linear corrected;
59     laplacian(alphaEff,h) Gauss linear corrected;
60     laplacian(alphaEff,hu) Gauss linear corrected;
63 interpolationSchemes
65     default         linear;
68 snGradSchemes
70     default         corrected;
73 fluxRequired
75     default         no;
76     p               ;
80 // ************************************************************************* //