Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / buoyantSimpleFoam / buoyantCavity / system / fvSchemes
blob455eeafce1e997a80db5043845b02510ff04aa7b
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     object      fvSchemes;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 ddtSchemes
19     default steadyState;
22 gradSchemes
24     default         Gauss linear;
27 divSchemes
29     default         none;
30     div(phi,U)      Gauss limitedLinear 0.2;
31     div(phi,h)      Gauss limitedLinear 0.2;
32     div(phi,k)      Gauss limitedLinear 0.2;
33     div(phi,epsilon) Gauss limitedLinear 0.2;
34     div(phi,omega) Gauss limitedLinear 0.2;
35     div((muEff*dev2(T(grad(U))))) Gauss linear;
38 laplacianSchemes
40     default         none;
41     laplacian(muEff,U) Gauss linear uncorrected;
42     laplacian((rho*(1|A(U))),p_rgh) Gauss linear uncorrected;
43     laplacian(alphaEff,h) Gauss linear uncorrected;
44     laplacian(DkEff,k) Gauss linear uncorrected;
45     laplacian(DepsilonEff,epsilon) Gauss linear uncorrected;
46     laplacian(DomegaEff,omega) Gauss linear uncorrected;
49 interpolationSchemes
51     default         linear;
54 snGradSchemes
56     default         uncorrected;
59 fluxRequired
61     default         no;
62     p_rgh;
66 // ************************************************************************* //