ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / tutorials / combustion / dieselFoam / aachenBomb / system / fvSchemes
blobf3292cb2d796519689f9d7ccdddb32820f84a5cb
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.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;
26     grad(p)         Gauss linear;
29 divSchemes
31     default         none;
32     div(phi,rho)    Gauss limitedLinear 1;
33     div(phi,U)      Gauss limitedLinearV 1;
34     div(phiU,p)     Gauss linear;
35     div(phi,k)      Gauss limitedLinear 1;
36     div(phi,epsilon) Gauss limitedLinear 1;
37     div(phi,Yi_h)   Gauss upwind;
38     div(phi,fu_ft_h) Gauss multivariateSelection
39     {
40         fu limitedLinear 1;
41         ft limitedLinear 1;
42         hs limitedLinear 1;
43     };
44     div((muEff*dev2(T(grad(U))))) Gauss linear;
47 laplacianSchemes
49     default         Gauss linear corrected;
50     laplacian(muEff,U) Gauss linear corrected;
51     laplacian(muEff,ft) Gauss linear corrected;
52     laplacian(muEff,fu) Gauss linear corrected;
53     laplacian(((alphah*mut)+alpha),hs) Gauss linear corrected;
54     laplacian((rho|A(U)),p) Gauss linear corrected;
55     laplacian(rhoD,k) Gauss linear corrected;
56     laplacian(rhoD,epsilon) Gauss linear corrected;
59 interpolationSchemes
61     default         linear;
62     interpolate(HbyA) linear;
65 snGradSchemes
67     default         corrected;
70 fluxRequired
72     default         no;
73     p;
77 // ************************************************************************* //