initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / tutorials / Xoodles / pitzDaily3D / system / fvSchemes
blob319151c4c3c754926946f10f755d5aa542f32104
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.5                                   |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      fvSchemes;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 ddtSchemes
19     default Euler;
22 gradSchemes
24     default         Gauss linear;
25     grad(p)         Gauss linear;
28 divSchemes
30     default         none;
31     div(phi,U)      Gauss limitedLinearV 1;
32     div(phid,p)     Gauss linear;
33     div(phiU,p)     Gauss linear;
34     div(phi,k)      Gauss limitedLinear 1;
35     div(phi,B)      Gauss limitedLinear 1;
36     div(B)          Gauss linear;
37     div(phiXi,Xi)   Gauss limitedLinear 1;
38     div(phiXi,Su)   Gauss limitedLinear 1;
39     div(phiSt,b)    Gauss limitedLinear01 1;
40     div(phi,ft_b_h_hu) Gauss multivariateSelection 
41     {
42         fu              limitedLinear01 1;
43         ft              limitedLinear01 1;
44         b               limitedLinear01 1;
45         h               limitedLinear 1;
46         hu              limitedLinear 1;
47     };
48     div(U)          Gauss linear;
49     div((Su*grad(b))) Gauss linear;
50     div((U+((Su*Xi)*grad(b)))) Gauss linear;
51     div((muEff*dev2(grad(U).T()))) Gauss linear;
54 laplacianSchemes
56     default         none;
57     laplacian(muEff,U) Gauss linear corrected;
58     laplacian(DkEff,k) Gauss linear corrected;
59     laplacian(DBEff,B) Gauss linear corrected;
60     laplacian((rho*(1|A(U))),p) Gauss linear corrected;
61     laplacian(muEff,b) Gauss linear corrected;
62     laplacian(muEff,ft) Gauss linear corrected;
63     laplacian(alphaEff,h) Gauss linear corrected;
64     laplacian(alphaEff,hu) Gauss linear corrected;
67 interpolationSchemes
69     default         linear;
72 snGradSchemes
74     default         corrected;
77 fluxRequired
79     default         no;
80     p;
83 // ************************************************************************* //