initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / tutorials / multiphaseInterFoam / damBreak4phase / system / fvSchemes
blob8f44bf9fcd53367b5bee2a00b30ad4a13dd859b6
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;
25     grad(U)         Gauss linear;
26     grad(gamma)     Gauss linear;
29 divSchemes
31     div(rho*phi,U)  Gauss upwind;
32     div(phi,alpha)  Gauss limitedLimitedLinear 1.0 -0.00001 1.00001;
33     div(phic,alpha) Gauss interfaceCompression; //upwind;
36 laplacianSchemes
38     default         Gauss linear corrected;
41 interpolationSchemes
43     default         linear;
46 snGradSchemes
48     default         corrected;
51 fluxRequired
53     default         yes;
56 // ************************************************************************* //