initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / multiphase / bubbleFoam / bubbleColumn / system / fvSchemes
blob744d2225c712c5eb29a302a9e8d5b5eff19fe9b2
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
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;
28 divSchemes
30     default         none;
31     div(phia,Ua)    Gauss limitedLinearV 1;
32     div(phib,Ub)    Gauss limitedLinearV 1;
33     div(phib,k)     Gauss limitedLinear 1;
34     div(phib,epsilon) Gauss limitedLinear 1;
35     div(phi,alpha)  Gauss limitedLinear01 1;
36     div((-nuEffa*grad(Ua).T())) Gauss linear;
37     div((-nuEffb*grad(Ub).T())) Gauss linear;
40 laplacianSchemes
42     default         none;
43     laplacian(nuEffa,Ua) Gauss linear corrected;
44     laplacian(nuEffb,Ub) Gauss linear corrected;
45     laplacian((rho*(1|A(U))),p) Gauss linear corrected;
48 interpolationSchemes
50     default         linear;
53 snGradSchemes
55     default         corrected;
58 fluxRequired
60     default         no;
61     p               ;
65 // ************************************************************************* //