Improved setup.
[OpenFOAM-1.6.x.git] / tutorials / combustion / fireFoam / les / smallPoolFire2D / system / fvSchemes
blob8b24cb3469fc56cae3a762677be34b696decc0b5
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
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     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 limitedLinear 1;
32     div(phi,k)      Gauss limitedLinear 1;
33     flux(phi,ft)    Gauss limitedLinear01 1;
34     div(phi,ft_b_h) Gauss multivariateSelection
35     {
36         fu              limitedLinear01 1;
37         ft              limitedLinear01 1;
38         hs              limitedLinear 1;
39     };
40     div((muEff*dev2(grad(U).T()))) Gauss linear;
41     div(phiU,p)     Gauss linear;
42     div(Ji,Ii_h)    Gauss upwind;
45 laplacianSchemes
47     default         none;
48     laplacian(muEff,U) Gauss linear corrected;
49     laplacian(DkEff,k) Gauss linear corrected;
50     laplacian(DBEff,B) Gauss linear corrected;
51     laplacian(alphaEff,hs) Gauss linear uncorrected;
52     laplacian(alphaEff,fu) Gauss linear uncorrected;
53     laplacian(alphaEff,ft) Gauss linear uncorrected;
54     laplacian((((rho*(1|A(U)))*rho)*gh)) Gauss linear uncorrected;
55     laplacian(interpolate((rho*(1|A(U)))),p) Gauss linear uncorrected;
56     laplacian(gammaRad,G) Gauss linear corrected;
59 interpolationSchemes
61     default         linear;
64 snGradSchemes
66     default         corrected;
69 fluxRequired
71     default         no;
72     p;
76 // ************************************************************************* //