fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / incompressible / channelFoam / channel395 / system / fvSchemes
blob1d2acf2c24df32bd8c2afcbdc4175748ca4abce9
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     object      fvSchemes;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 ddtSchemes
19     default backward;
22 gradSchemes
24     default         Gauss linear;
25     grad(p)         Gauss linear;
26     grad(U)         Gauss linear;
29 divSchemes
31     default         none;
32     div(phi,U)      Gauss linear;
33     div(phi,k)      Gauss limitedLinear 1;
34     div(phi,B)      Gauss limitedLinear 1;
35     div(B)          Gauss linear;
36     div(phi,nuTilda) Gauss limitedLinear 1;
37     div((nuEff*dev(grad(U).T()))) Gauss linear;
40 laplacianSchemes
42     default         none;
43     laplacian(nuEff,U) Gauss linear corrected;
44     laplacian((1|A(U)),p) Gauss linear corrected;
45     laplacian(DkEff,k) Gauss linear corrected;
46     laplacian(DBEff,B) Gauss linear corrected;
47     laplacian(DnuTildaEff,nuTilda) Gauss linear corrected;
50 interpolationSchemes
52     default         linear;
53     interpolate(U)  linear;
56 snGradSchemes
58     default         corrected;
61 fluxRequired
63     default         no;
64     p;
67 // ************************************************************************* //