Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / incompressible / icoFoam / cavity / system / fvSchemes
blobed07adbb7d6648b313f95919e909f0b93ac4683f
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
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 linear;
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 // ************************************************************************* //