new bc
[OpenFOAM-1.5.x.git] / tutorials / bubbleFoam / bubbleColumn / system / fvSchemes
blob8a016bd1c44d2f6430dd6d1f89a0a1e5528c035b
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.5                                   |
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     object      fvSchemes;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 ddtSchemes
19     default Euler;
22 gradSchemes
24     default         Gauss linear;
27 divSchemes
29     default         none;
30     div(phia,Ua)    Gauss limitedLinearV 1;
31     div(phib,Ub)    Gauss limitedLinearV 1;
32     div(phib,k)      Gauss limitedLinear 1;
33     div(phib,epsilon) Gauss limitedLinear 1;
34     div(phi,alpha)  Gauss limitedLinear01 1;
35     div((-nuEffa*grad(Ua).T())) Gauss linear;
36     div((-nuEffb*grad(Ub).T())) Gauss linear;
39 laplacianSchemes
41     default         none;
42     laplacian(nuEffa,Ua) Gauss linear corrected;
43     laplacian(nuEffb,Ub) Gauss linear corrected;
44     laplacian((rho*(1|A(U))),p) Gauss linear corrected;
47 interpolationSchemes
49     default         linear;
52 snGradSchemes
54     default         corrected;
57 fluxRequired
59     default         no;
60     p;
63 // ************************************************************************* //