fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / combustion / engineFoam / kivaTest / system / fvSchemes
blob32b025bdf882300d978b3703ff6c4ad7467f4284
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     location    "system";
14     object      fvSchemes;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 ddtSchemes
20     default         Euler;
23 gradSchemes
25     default         Gauss linear;
26     grad(p)         Gauss linear;
29 divSchemes
31     default         none;
32     div(phi,U)      Gauss upwind;
33     div(phid,p)     Gauss upwind;
34     div(phiU,p)     Gauss linear;
35     div(phi,k)      Gauss upwind;
36     div(phi,epsilon) Gauss upwind;
37     div(phi,R)      Gauss upwind;
38     div(R)          Gauss linear;
39     div(phiXi,Xi)   Gauss upwind;
40     div(phiXi,Su)   Gauss upwind;
41     div(phiSt,b)    Gauss limitedLinear01 1;
42     div(phi,ft_b_h_hu) Gauss multivariateSelection { fu limitedLinear01 1 ; ft limitedLinear01 1 ; b limitedLinear01 1 ; h limitedLinear 1 ; hu limitedLinear 1 ; };
43     div(U)          Gauss linear;
44     div((Su*grad(b))) Gauss linear;
45     div((U+((Su*Xi)*grad(b)))) Gauss linear;
46     div((muEff*dev2(grad(U).T()))) Gauss linear;
49 laplacianSchemes
51     default         none;
52     laplacian(muEff,U) Gauss linear corrected;
53     laplacian(DkEff,k) Gauss linear limited 0.5;
54     laplacian(DepsilonEff,epsilon) Gauss linear limited 0.5;
55     laplacian(DREff,R) Gauss linear limited 0.5;
56     laplacian((rho*(1|A(U))),p) Gauss linear limited 0.5;
57     laplacian(muEff,b) Gauss linear limited 0.5;
58     laplacian(muEff,ft) Gauss linear limited 0.5;
59     laplacian(alphaEff,h) Gauss linear limited 0.5;
60     laplacian(alphaEff,hu) Gauss linear limited 0.5;
61     laplacian(alphaEff,ft) Gauss linear limited 0.5;
64 interpolationSchemes
66     default         linear;
69 snGradSchemes
71     default         limited 0.5;
74 fluxRequired
76     default         no;
77     p               ;
80 // ************************************************************************* //