initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / incompressible / icoFoam / elbow / system / fvSchemes
blob726c659fe791e00bee1d55eecefe03109215c74a
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;
26     grad(p)         Gauss linear;
29 divSchemes
31     default         none;
32     div(phi,U)      Gauss limitedLinearV 1;
35 laplacianSchemes
37     default         none;
38     laplacian(nu,U) Gauss linear corrected;
39     laplacian((1|A(U)),p) Gauss linear corrected;
42 interpolationSchemes
44     default         linear;
45     interpolate(HbyA) linear;
48 snGradSchemes
50     default         corrected;
53 fluxRequired
55     default         no;
56     p               ;
60 // ************************************************************************* //